<?php $str = '[Links label="my_label" url="my_url" external="other_value"]'; preg_match("/ (.*?)=\"(.*?)\" (.*?)=\"(.*?)\" (.*?)=\"(.*?)\"/", $str, $match); unset($match[0]); foreach(array_chunk($match,2) as $m){ $res[$m[0]] = $m[1]; } var_dump($res);
You have javascript disabled. You will not be able to edit any code.