1
0
mirror of https://github.com/php/php-src.git synced 2026-04-21 23:18:13 +02:00

add SKIPIF section

This commit is contained in:
Antony Dovgal
2007-05-02 15:41:22 +00:00
parent e03eadf633
commit fca80f63fb
+7
View File
@@ -2,6 +2,13 @@
Bug #40770 Apache child exits when PHP memory limit reached
--INI--
memory_limit=8M
--SKIPIF--
<?php
$zend_mm_enabled = getenv("USE_ZEND_ALLOC");
if ($zend_mm_enabled === "0") {
die("skip Zend MM disabled");
}
?>
--FILE--
<?php
ini_set('display_errors',true);