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