当前位置:Gxlcms > PHP教程 > 这个正则该如何写?高手来帮帮忙

这个正则该如何写?高手来帮帮忙

时间:2021-07-01 10:21:17 帮助过:28人阅读

这个正则该怎么写?高手来帮帮忙
本帖最后由 xjl756425616 于 2014-09-11 16:26:36 编辑


------解决思路----------------------

$str = "[size=18px]123[size=16px]456[/size]789[/size]";

preg_match_all('#\[size=[^\[\]]+\](?:[^\[\]]+
------解决思路----------------------
((?R)))*\[/size\]#', $str, $matchs);

print_r($matchs);
------解决思路----------------------
别小看我这么写,答案正是你想要的
$str = "123[size=16px]456789[/size]";

$pattern = '/\[size=18px\]123(.*?)789\[\/size\]/';

preg_match_all($pattern, $str, $arr);

print_r($arr);

人气教程排行