mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
15 lines
256 B
PHP
15 lines
256 B
PHP
--TEST--
|
|
GH-17951 Runtime Change 2
|
|
--CREDITS--
|
|
Frederik Milling Pytlick (frederikpyt@protonmail.com)
|
|
--INI--
|
|
memory_limit=128M
|
|
max_memory_limit=512M
|
|
--FILE--
|
|
<?php
|
|
ini_set('memory_limit', '512M');
|
|
echo ini_get('memory_limit') . PHP_EOL;
|
|
?>
|
|
--EXPECT--
|
|
512M
|