TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
359 B
15 lines
359 B
--TEST--
|
|
Bug #36306 (crc32() 64bit)
|
|
--FILE--
|
|
<?php
|
|
|
|
/* as an example how to write crc32 tests
|
|
PHP does not have uint values, you cannot
|
|
display crc32 like a signed integer.
|
|
Have to find some small strings to truly reproduce
|
|
the problem, this example being not a problem
|
|
*/
|
|
echo dechex(crc32("platform independent")) . "\n";
|
|
?>
|
|
--EXPECT--
|
|
cbd056ba
|
|
|