3v4l.org

run code in 300+ PHP versions simultaneously
<?php function byref( &$arg ) { $arg = 'abc'; } function bar($a) { $x = new Exception(); $trace = $x->getTrace(); foreach ( $trace as $frame ) { if ( empty( $frame['args'] ) ) { continue; } foreach ( $frame['args'] as $key => $arg ) { if ( is_array( $arg ) ) { // array_walk_recursive( $arg, 'byref' ); // same issue when doing it manually: foreach ( $arg as &$foo ) { $foo = 'xyz'; } unset( $foo ); } } } } $b = array( 'X', 'Y' ); foreach ( $b as &$value ) { bar( $b ); var_dump( $value ); }
Output for git.master_jit, git.master, rfc.property-hooks
string(3) "xyz" string(3) "xyz"

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:
33.14 ms | 405 KiB | 5 Q