问一个php正则的有关问题请高手帮忙
时间:2021-07-01 10:21:17
帮助过:12人阅读
问一个php正则的问题 请高手帮忙~
$url = 'http://www.cfi.net.cn/p20070802001393.html ';
$file = file_get_contents ($url);
$content = '/ <\/nobr> <\/td> <\/tr> <\/table>
([^
$re = preg_match_all(
$content,
$file,
$out);
print_r( $out );
我想匹配该地址中
和
之间的正文内容
正则式该怎么写?
------解决方案--------------------/ <\/nobr> <\/td> <\/tr> <\/table>
((?:.|\n|\r)*)