mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
27 lines
551 B
PHP
27 lines
551 B
PHP
--TEST--
|
|
Bug #45392 (ob_start()/ob_end_clean() and memory_limit)
|
|
--SKIPIF--
|
|
<?php
|
|
if (PHP_OS_FAMILY === 'Windows' && version_compare(PHP_VERSION, '8.4', '<')) {
|
|
die("xfail fails on Windows Server 2022 and newer.");
|
|
}
|
|
if (getenv("USE_ZEND_ALLOC") === "0") {
|
|
die("skip Zend MM disabled");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo __LINE__ . "\n";
|
|
ini_set('memory_limit', "2M");
|
|
ob_start();
|
|
$i = 0;
|
|
while($i++ < 5000) {
|
|
echo str_repeat("may not be displayed ", 42);
|
|
}
|
|
ob_end_clean();
|
|
?>
|
|
--EXPECTF--
|
|
2
|
|
|
|
Fatal error: Allowed memory size of %d bytes exhausted%s
|