3v4l.org

run code in 300+ PHP versions simultaneously
<?php $read = array("0" => "master/city", "1" => "master/national_holiday", "2" => "master/operator_comments", "3" => "master/sensors" ); $write = array("0" => "master/city", "1" => "master/national_holiday"); $final = []; array_walk($read,function($v,$k) use (&$final,&$write){ if(array_search($v,$write) > -1){ $final[$v] = 'read/write'; } else{ $final[$v] = 'read'; } }); print_r($final);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [master/city] => read/write [master/national_holiday] => read/write [master/operator_comments] => read [master/sensors] => read )

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:
65.2 ms | 401 KiB | 8 Q