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
404 B
18 lines
404 B
--TEST--
|
|
No overflow should occur during the memory_limit check for wordwrap()
|
|
--SKIPIF--
|
|
<?php
|
|
echo 'skip AOT compilation or behavior differs';
|
|
?>
|
|
--INI--
|
|
memory_limit=128M
|
|
--FILE--
|
|
<?php
|
|
|
|
$str = str_repeat('x', 65534);
|
|
$str2 = str_repeat('x', 65535);
|
|
wordwrap($str, 1, $str2);
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Allowed memory size of 134217728 bytes exhausted%s(tried to allocate %d bytes) in %s on line %d
|
|
|