3v4l.org

run code in 300+ PHP versions simultaneously
<?php gc_disable(); class x { public $value; public $y; public function __construct($value) { $this->value = $value; $this->y = new y(); } } class y { } $array = array(); for($i = 0; $i < 50000; $i++) { $array[] = new x(md5('Hallo')); } var_dump(number_format(memory_get_usage(), 0, ',', '.')) . "\n"; var_dump(number_format(memory_get_usage(true), 0,',','.')) . "\n"; unset($array); sleep(1); var_dump(gc_collect_cycles()) . "\n"; var_dump(number_format(memory_get_usage(), 0, ',', '.')) . "\n"; var_dump(number_format(memory_get_usage(true), 0,',','.')) . "\n";
Output for 7.4.0 - 7.4.1
string(10) "12.734.088" string(10) "14.684.160" int(0) string(9) "1.432.792" string(10) "12.582.912"
Output for 7.3.0 - 7.3.13
string(10) "12.734.096" string(10) "14.684.160" int(0) string(9) "1.432.800" string(10) "12.582.912"
Output for 7.2.0 - 7.2.26
string(10) "12.730.000" string(10) "14.684.160" int(0) string(9) "1.428.704" string(10) "12.582.912"
Output for 7.1.0 - 7.1.33
string(10) "12.693.528" string(10) "14.684.160" int(0) string(9) "1.392.232" string(10) "12.582.912"
Output for 7.0.0 - 7.0.33
string(10) "12.693.576" string(10) "14.684.160" int(0) string(9) "1.392.280" string(10) "12.582.912"
Output for 5.6.0 - 5.6.40
string(10) "29.874.032" string(10) "30.408.704" int(0) string(9) "8.549.224" string(10) "16.777.216"
Output for 5.5.0 - 5.5.38
string(10) "29.874.160" string(10) "30.408.704" int(0) string(9) "8.549.176" string(10) "14.680.064"
Output for 5.4.10 - 5.4.45
string(10) "29.874.512" string(10) "30.408.704" int(0) string(9) "8.549.696" string(10) "16.777.216"
Output for 5.4.0 - 5.4.9
string(10) "29.874.512" string(10) "30.408.704" int(0) string(9) "8.549.712" string(10) "16.777.216"
Output for 5.3.11 - 5.3.29
string(10) "54.281.160" string(10) "55.050.240" int(0) string(9) "8.956.128" string(10) "10.223.616"
Output for 5.3.0 - 5.3.10
string(10) "54.280.992" string(10) "55.050.240" int(0) string(9) "8.955.992" string(10) "10.485.760"
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Fatal error: Call to undefined function gc_disable() in /in/QpRDF on line 2
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/QpRDF on line 5
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/QpRDF on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/QpRDF on line 5
Process exited with code 255.

preferences:
215.24 ms | 401 KiB | 325 Q