Heim >Backend-Entwicklung >PHP-Tutorial >求一个正则 $Row=10 转 Row="10"
变成
或
变成
或
变成
三处必须:
qlist:后边的 m或m2 是可能会变的 这里要保持替换前后一致
listname="xxx" 就是上方冒号后的内容 必须存在
中间的其他部分 是多种多样的 需要把格式 $aaa=bbb 全转成 aaa="bbb" 格式 有就转 没有就算 允许不填
$s = '<qlist:m $Row=10 $table=Channel $Where=[FatherID]=0 ><qlist:m2 $Row=10 ><qlist:m3>';echo preg_replace( array('/<qlist:(\w+)/', '/(\$Row=)(\d+)/'), array('$0 listname="$1"', '$1"$2"'), $s);
<qlist:m listname="m" $Row="10" $table=Channel $Where=[FatherID]=0 ><qlist:m2 listname="m2" $Row="10" ><qlist:m3 listname="m3">
$s = '<qlist:m $Row=10 $table=Channel $Where=[FatherID]=0 ><qlist:m2 $Row=10 ><qlist:m3>';echo preg_replace( array('/<qlist:(\w+)/', '/(\$Row=)(\d+)/'), array('$0 listname="$1"', '$1"$2"'), $s);
<qlist:m listname="m" $Row="10" $table=Channel $Where=[FatherID]=0 ><qlist:m2 listname="m2" $Row="10" ><qlist:m3 listname="m3">
<?php$s = '<qlist:m $Row=10 $table=Channel $Where=[FatherID]=0 ><qlist:m2 $Row=10 ><qlist:m3>'; echo preg_replace( array('/<qlist:(\w+)/', '/\$(Row=)(\d+)/', '/\$(table=)(\w+)/','/\$(Where=)(\[(\w+)\]=)(\d+)/'), array('$0 listname="$1"', '$1"$2"', '$1"$2"', '$1"$2$4"'), $s);?>