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.
13 lines
357 B
13 lines
357 B
--TEST--
|
|
Test unpacking at the 32-bit integer limit
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip Test output differs under AOT compilation';
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$a = pack("AAAAAAAAAAAA", 1,2,3,4,5,6,7,8,9,10,11,12);
|
|
unpack('h2147483647', $a);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: unpack(): Type h: not enough input values, need 1073741824 values but only 12 were provided in %s on line %d
|
|
|