正则截取html中的一段,该如何解决
时间:2021-07-01 10:21:17
帮助过:31人阅读
正则截取html中的一段
.........
.........
........
........
这样的循环 我要截取第一条,多的不要
标题标题 中的"83291221" "标题标题" 这两个,另外把这两个转换成变量 求大神解@@@
------解决方案--------------------
preg_match_all("
------解决方案--------------------
(.*)------解决方案--------------------U", $str, $out);
$a = $out[2][0];
$b = $out[4][0];
echo "a::$a , b::$b";
------解决方案--------------------preg_match('#
#s',$s,$m);
preg_match('#
]+>(.+?)#s',$m[1],$ar);
print_r($ar);