获取div[id]内容的正则表达式
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取div[id]内容的正则表达式相关的知识,希望对你有一定的参考价值。
This allows you to get contents of any div with ID tag.$matches[0] returns with parent div tag
$matches[1] returns with out parent div tag
preg_match('/<div id=["]{0,1}ad_content["]{0,1}>(.*?)</div>/s', $content['content_body'], $matches); $content['content_body'] = $matches[1];
以上是关于获取div[id]内容的正则表达式的主要内容,如果未能解决你的问题,请参考以下文章