3v4l.org

run code in 300+ PHP versions simultaneously
<?php call_user_func(function(){ echo 'val_val' . PHP_EOL; $a = "xxx"; $b = $a; $c = $b; ob_start(function ($s) { return preg_replace('/^/m', " ", $s); }); xdebug_debug_zval('a', 'b', 'c'); ob_end_flush(); }); call_user_func(function(){ echo 'ref_val' . PHP_EOL; $a = "xxx"; $b = &$a; $c = $b; ob_start(function ($s) { return preg_replace('/^/m', " ", $s); }); xdebug_debug_zval('a', 'b', 'c'); ob_end_flush(); }); call_user_func(function(){ echo 'val_ref' . PHP_EOL; $a = "xxx"; $b = $a; $c = &$b; ob_start(function ($s) { return preg_replace('/^/m', " ", $s); }); xdebug_debug_zval('a', 'b', 'c'); ob_end_flush(); }); call_user_func(function(){ echo 'ref_ref' . PHP_EOL; $a = "xxx"; $b = &$a; $c = &$b; ob_start(function ($s) { return preg_replace('/^/m', " ", $s); }); xdebug_debug_zval('a', 'b', 'c'); ob_end_flush(); });
Output for git.master, git.master_jit, rfc.property-hooks
val_val Fatal error: Uncaught Error: Call to undefined function xdebug_debug_zval() in /in/ntMhs:10 Stack trace: #0 /in/ntMhs(12): {closure}() #1 {main} thrown in /in/ntMhs on line 10
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
39.41 ms | 401 KiB | 8 Q