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.
18 lines
396 B
18 lines
396 B
--TEST--
|
|
GH-18976 (pack overflow with h/H format)
|
|
--INI--
|
|
memory_limit=-1
|
|
--SKIPIF--
|
|
<?php
|
|
if (!getenv('RUN_RESOURCE_HEAVY_TESTS')) die('skip resource-heavy test');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
pack('h2147483647', 1);
|
|
pack('H2147483647', 1);
|
|
?>
|
|
--EXPECTF--
|
|
|
|
Warning: pack(): Type h: not enough characters in string in %s on line %d
|
|
|
|
Warning: pack(): Type H: not enough characters in string in %s on line %d
|
|
|