File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / ext / standard / tests / strings / crc32.phpt
Revision 1.1: download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:04 2012 UTC (12 years, 5 months ago) by misho
CVS tags: MAIN, HEAD
Initial revision

--TEST--
crc32() function
--FILE--
<?php
$input = array("foo", "bar", "baz", "grldsajkopallkjasd");
foreach($input AS $i) {
	printf("%u\n", crc32($i));
}
?>
--EXPECT--
2356372769
1996459178
2015626392
824412087

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>