php正则表达式提取<p class=indent>提取内容<⼀p>之间的内容

2024-11-01 19:12:16
推荐回答(1个)
回答1:

$str = '

要提取的内容

';
$preg = "/(.*)<\/p>/";//正则
preg_match($preg,$str,$num);
echo $num[1];