3v4l.org

run code in 300+ PHP versions simultaneously
<?php function AttrFromString($string) { preg_match_all('/(\S+)=["\']?((?:.(?!["\']?\s+(?:\S+)=|[>"\']))+.)["\']?|(\S+)/', $string, $matches); $newlist = array(); foreach($matches[0] as $yes) { if (strpos($yes, "=")!==false) { $as = explode('=', $yes); } array_push($newlist, array($as[0]. $as[1])); } var_dump($newlist); } AttrFromString("test=hallo tes2=\"doei\" test3='lol' no-pe ja test='niks'");
Output for git.master, git.master_jit, rfc.property-hooks
array(6) { [0]=> array(1) { [0]=> string(9) "testhallo" } [1]=> array(1) { [0]=> string(10) "tes2"doei"" } [2]=> array(1) { [0]=> string(10) "test3'lol'" } [3]=> array(1) { [0]=> string(10) "test3'lol'" } [4]=> array(1) { [0]=> string(10) "test3'lol'" } [5]=> array(1) { [0]=> string(10) "test'niks'" } }

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:
43.66 ms | 402 KiB | 8 Q