ホームページ >バックエンド開発 >PHPチュートリアル >正規表現 $Row=10 から Row='10' を検索します。
2c4564034d73082cd690bc8d5bd8a271
变成
9c5fe92de4d2531b75ad6aef1383e1ad
或
d1054ed1f761e83c40264b6acae862c9
变成
4d151600d7d46cade0b2a8fd159dbe4d
或
06c66c818a5a2386bc961d7a2fcd6427
变成
7546bde759b1c093c714c9ad6378fbe8
三处必须:
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);?>