3v4l.org

run code in 300+ PHP versions simultaneously
<?php function AttrFromString($string) { preg_match_all('/(\S+)=["\']?((?:.(?!["\']?\s+(?:\S+)=|[>"\']))+.)["\']?|(\S+)/', $string, $matches); $newlist = array(); for($i = 0; $i < count($matches[0]); $i++) { if (!empty($matches[1][$i])) { array_push($newlist, array($matches[1][$i] , $matches[2][$i])); } else { if(!empty($matches[3][$i])) { array_push($newlist, array($matches[3][$i] , "")); } } } var_dump($newlist); } AttrFromString("test=hallo tes2=\"doei\" test3='lol' no-pe ja test='niks'");

preferences:
39.45 ms | 402 KiB | 5 Q