请教下如何写正则。
程序员文章站
2024-01-28 23:50:04
...
RT,如何写一段关于 的正则。
$regex='/
preg_match_all($regex, $str, $content);
echo '
回复内容:
RT,如何写一段关于
的正则。
问题能详细一点么
$str="
4444
555
";$regex='/
(.*?)
/i';preg_match_all($regex, $str, $content);
echo '
';
var_dump($content[1]);