3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = array( 0=>"1:A", 1=>"2:B", 2=>"3:C", 3=>"4:D", 4=>"5:E", ); //处理 $array1 = array(); array_walk($array, function($val,$key,$fix) use(&$array1){ $v = explode($fix, $val); $array1[$v[1]] = $v[0]; },':'); var_dump($array1); $t=[1,3,5];echo json_encode($t);
Output for git.master, git.master_jit, rfc.property-hooks
array(5) { ["A"]=> string(1) "1" ["B"]=> string(1) "2" ["C"]=> string(1) "3" ["D"]=> string(1) "4" ["E"]=> string(1) "5" } [1,3,5]

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