为何匹配不全 求原因 ('/$(w+)=(.+?) $/i', $d, $matches2)

WBOY
發布: 2016-06-23 13:28:37
原創
832 人瀏覽過

$d = ‘$Row=10 $cid=1 $table=channel $sql=select * form abc $Where=[FatherID]=0 $’


preg_match_all('/\$(\w+)=(.+?) \$/i', $d, $matches2); 
if($matches2){
$d2 = '';
for($k=0;$k $d2 = $d2 . $matches2[1][$k] . '="' .$matches2[2][$k] .'" ';
}
}
 
结果 只有 Row="10" table="channel" Where="[FatherID]=0"

应该是 Row="10" cid="1"  table="channel"  $sql="select * form abc" Where="[FatherID]=0" 才对呀 错在哪呢?


回复讨论(解决方案)

应该匹配到5个才对呀 为啥只有3个呢 求大神给个解决方案

$d = '$Row=10 $cid=1 $table=channel $sql=select * form abc $Where=[FatherID]=0 $';preg_match_all('/\$(\w+)=([^$]+)/i', $d, $matches2);print_r($matches2);
登入後複製
Array(    [0] => Array        (            [0] => $Row=10             [1] => $cid=1             [2] => $table=channel             [3] => $sql=select * form abc             [4] => $Where=[FatherID]=0         )    [1] => Array        (            [0] => Row            [1] => cid            [2] => table            [3] => sql            [4] => Where        )    [2] => Array        (            [0] => 10             [1] => 1             [2] => channel             [3] => select * form abc             [4] => [FatherID]=0         ))
登入後複製

你 /\$(\w+)=(.+?) \$/ 这样写不行的原因是
$Row=10 $cid=1  $table=channel $sql=select * form abc  $Where=[FatherID]=0 $
看明白了吗?

用这个规则,你还需要 $d = str_replace('$', '$$', $d), 

你 /\$(\w+)=(.+?) \$/ 这样写不行的原因是
$Row=10 $cid=1  $table=channel $sql=select * form abc  $Where=[FatherID]=0 $
看明白了吗?

用这个规则,你还需要 $d = str_replace('$', '$$', $d), 



啊 这么笨的正则啊。。。郁闷 嗯 我改进下 谢啦

你 /\$(\w+)=(.+?) \$/ 这样写不行的原因是
$Row=10 $cid=1  $table=channel $sql=select * form abc  $Where=[FatherID]=0 $
看明白了吗?

用这个规则,你还需要 $d = str_replace('$', '$$', $d), 



啊 这么笨的正则啊。。。郁闷 嗯 我改进下 谢啦
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板