3v4l.org

run code in 300+ PHP versions simultaneously
<?php function by_return($dummy=null) { $dummy = str_repeat("1",100 * 1024 * 1024); return $dummy; } function by_reference(&$dummy) { $dummy = null; $dummy = str_repeat("1",100 * 1024 * 1024); } echo memory_get_usage()."/".memory_get_peak_usage()."\n"; //1 always returns: 105493696/105496656 $nagid = by_return(); echo memory_get_usage()."/".memory_get_peak_usage()."\n"; unset($nagid); //2 always returns: 105493696/210354184 even if we comment 1st part by_reference($dummy); echo memory_get_usage()."/".memory_get_peak_usage()."\n"; unset($dummy);
Output for 7.4.0
388728/425904 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857632 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 7.3.0 - 7.3.12
388768/425704 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857632 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 7.2.0 - 7.2.25
384744/421752 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857632 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 7.1.0 - 7.1.33
348104/384696 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857632 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 7.0.0 - 7.0.33
348064/384696 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857632 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.6.0 - 5.6.40
220536/226920 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.5.0 - 5.5.38
220536/226864 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.4.10 - 5.4.45
221056/226848 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.4.0 - 5.4.9
221056/226800 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.3.11 - 5.3.29
624736/636192 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.3.0 - 5.3.10
624432/635888 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.2.10 - 5.2.17
82696/93240 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.2.7 - 5.2.9
83352/93272 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.2.3 - 5.2.6
83672/93592 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.2.2
81728/91392 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.2.1
81680/91344 Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 104857601 bytes) in /in/Y6kiG on line 4
Process exited with code 255.
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0
Fatal error: Call to undefined function memory_get_usage() in /in/Y6kiG on line 12
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: memory_get_usage() in /in/Y6kiG on line 12
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: memory_get_usage() in /in/Y6kiG on line 12
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: memory_get_usage() in /in/Y6kiG on line 12

preferences:
253.34 ms | 401 KiB | 322 Q