我想从 id 以特定字符串开头但以任何内容结尾的 div 中提取内容。例子:
我有一个 div
<div id="content_message_56384">
My first post.
</div>
我的代码:
$regex = '#\<div id="content_message_[*]"\>(.+?)\<\/div\>#s';
preg_match($regex, $intro, $matches);
echo $match = $matches[0];
但我没有得到任何结果。请帮忙。