mirror of
https://github.com/php/php-src.git
synced 2026-03-29 03:32:20 +02:00
12 lines
169 B
PHP
12 lines
169 B
PHP
--TEST--
|
|
Bug #36568 (memory_limit has no effect)
|
|
--INI--
|
|
memory_limit=16M
|
|
--FILE--
|
|
<?php
|
|
ini_set("memory_limit", "32M");
|
|
echo ini_get("memory_limit");
|
|
?>
|
|
--EXPECT--
|
|
32M
|