3v4l.org

run code in 300+ PHP versions simultaneously
<?php $array = str_getcsv('key1=value1,key2=value2,...,key-n=value-n'); $newarray = array(); foreach($array as $pairs){ if(strpos($pairs, '=') !== FALSE){ list($key, $value) = explode('=', $pairs); $newarray[$key] = $value; } else { //no value present, what to do? } } print_r($newarray);
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [key1] => value1 [key2] => value2 [key-n] => value-n )

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