3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = [ [ 'value1' => 'John Doe', 'value2' => 'Father', 'value3' => '', 'value4' => 'http://www.website.my.com', 'value5' => '', 'value6' => '', ], [ 'value1' => 'Jane Doe', 'value2' => 'Mother', 'value3' => '', 'value4' => 'http://www.website.my.com', 'value5' => '', 'value6' => '', ], [ 'value1' => 'Sara Smith', 'value2' => 'Daughter', 'value3' => '', 'value4' => 'http://www.website.my.com', 'value5' => '', 'value6' => '', ], ]; foreach ($array as ['value4' => &$v]) { $v = str_replace("my.", "", $v); } var_export($array);
Output for git.master, git.master_jit, rfc.property-hooks
array ( 0 => array ( 'value1' => 'John Doe', 'value2' => 'Father', 'value3' => '', 'value4' => 'http://www.website.com', 'value5' => '', 'value6' => '', ), 1 => array ( 'value1' => 'Jane Doe', 'value2' => 'Mother', 'value3' => '', 'value4' => 'http://www.website.com', 'value5' => '', 'value6' => '', ), 2 => array ( 'value1' => 'Sara Smith', 'value2' => 'Daughter', 'value3' => '', 'value4' => 'http://www.website.com', 'value5' => '', 'value6' => '', ), )

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:
31.95 ms | 407 KiB | 5 Q