<?php $myString = "type:blue, type:red, shift:second, shift:first, category:circle, system:unknown"; $possibleKeys = [ "category", "shift", "type" ]; Foreach($possibleKeys as $key){ preg_match_all("/" . $key . ":(.*?),/", $myString, $m); $new[$key] = $m[1]; } Var_dump($new);
You have javascript disabled. You will not be able to edit any code.