1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 06:51:18 +02:00
Files
archived-php-src/ext/standard/tests/strings/crc32.phpt
T
2020-02-03 22:52:20 +01:00

15 lines
214 B
PHP

--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