ホームページ >バックエンド開発 >PHPチュートリアル >$aaa=bbb が aaa='bbb' になる正規表現を見つけます。
1 比如 f6a89ff323f4a5564d66510b1cbe9127$table=Channel
变成 4a434ec03670672a52f15de08c37a4e9$table=Channel
2 比如 145343ff3e46399126a4963b2f39c93c$Row=10
变成 5def24dcb818242f3672ec7cac4c4302$Row=10
3 比如 7e6455853b7c89269b9841a1d090fef4 $table=Channel
变成 eb9f211075b0196abe88895a4a75801c $table=Channel
结构说明
原结构必须是 855b5bd72efb43bb1e8c76ea692edc5c 结尾(>的左边 可能存在空格 也可能不存在) 非此结构内的 部分 不会变化
求正则
自己写了一个 但不完美
$p = '/\$(\w+)=(\w+)/i' ;
$r = '$1="$2"' ;
$c = preg_replace($p, $r, $c);
无法匹配 Where=[FatherID]=0 部分 也无法判断是否在51d72be6ce344e67a171ff174105565f 内部
能匹配上方三个例子的 给全部分
$Sql=select * from [{pre}Content] where [cid] in (3,4,5)
这个没有分界符号,不能判断,最后加个分号吧
<?php$s = '<qlist:m listname="m" $Row=10 $table=Channel $Where=[FatherID]=0 >$table=Channel<qlist:aa listname="aa" $Row=10 $Sql=select * from [{pre}Content] where [cid] in (3,4,5); $Type=Images>$Row=10<qlist:bb listname="bb" $Row=10> $table=Channel ';echo preg_replace( array('/(<.*)\$(Row=)(\d+)(.*>)/', '/(<.*)\$(table=)(\w+)(.*>)/','/(<.*)\$(Where=)(\[\w+\]=)(\d+)(.*>)/','/(<.*)\$(Type=)(\w+)(.*>)/', '/(<.*)\$(Sql=)(.*;)(.*>)/'), array('$1$2"$3"$4', '$1$2"$3"$4', '$1$2"$3$4"$5', '$1$2"$3"$4', '$1$2"$3"$4'), $s);?>
$Sql=select * from [{pre}Content] where [cid] in (3,4,5)
这个没有分界符号,不能判断,最后加个分号吧
<?php$s = '<qlist:m listname="m" $Row=10 $table=Channel $Where=[FatherID]=0 >$table=Channel<qlist:aa listname="aa" $Row=10 $Sql=select * from [{pre}Content] where [cid] in (3,4,5); $Type=Images>$Row=10<qlist:bb listname="bb" $Row=10> $table=Channel ';echo preg_replace( array('/(<.*)\$(Row=)(\d+)(.*>)/', '/(<.*)\$(table=)(\w+)(.*>)/','/(<.*)\$(Where=)(\[\w+\]=)(\d+)(.*>)/','/(<.*)\$(Type=)(\w+)(.*>)/', '/(<.*)\$(Sql=)(.*;)(.*>)/'), array('$1$2"$3"$4', '$1$2"$3"$4', '$1$2"$3$4"$5', '$1$2"$3"$4', '$1$2"$3"$4'), $s);?>
你要保证最后有个$才行,思路你都想出了,用我的改改也不难。
加油。
其实是$sql那个因为没有结尾符号判断,所以才需要加分号,其他其实已经实现功能了。