PHPize Online / SQLize Online  /  SQLtest Online

A A A
Share      Blog   Popular
Copy Format Clear
Copy Clear
Copy Format Clear
<?php $mystring = "anything:id='244' boss_fid_name='a' boss_fid_email='b' boss_fid_xyz='test'"; preg_match_all("/(\S+)='(\S+)'/", $mystring, $matches); //print_r($matches); $res = array_combine($matches[1], $matches[2]); print_r($res);
Show:  
Copy Clear