<?php $str = "select * from tbl_test where id=:id and name=:name"; preg_match_all("/(\w+)=(:\w+)/", $str, $m); $arr = array_combine($m[1], $m[2]); print_r($arr);
You have javascript disabled. You will not be able to edit any code.