php截取某个html标签里面内容的正则表达式,标签如下

2024-11-01 18:41:05
推荐回答(3个)
回答1:

$matches = array();
$b = '艾布拉姆斯他爹';
preg_match_all('((.*))', $b, $matches);
print_r($matches);

回答2:

$matches = array();
preg_match_all("((.+))", $body, $matches);
echo $matches[1][0]

回答3:

preg_match
preg_replace