xref: /php-src/Zend/tests/bug36568.phpt (revision 745f6627)
1--TEST--
2Bug #36568 (memory_limit has no effect)
3--INI--
4memory_limit=16M
5--FILE--
6<?php
7ini_set("memory_limit", "32M");
8echo ini_get("memory_limit");
9?>
10--EXPECT--
1132M
12