为什么这个正则表达式不起作用?
我想获取这两个 div 标头之间的任何数据,下面的代码应该可以工作,有什么我没有看到的吗?
preg_match_all('$\<div class\=\"productDescriptionWrapper\"\>(.*?)\<div class\=\"emptyClear\"\>$', $source, $match);
提前致谢!
I want to grab any data between these two div headers, and the code below should work, is there something I am not seeing?
preg_match_all('$\<div class\=\"productDescriptionWrapper\"\>(.*?)\<div class\=\"emptyClear\"\>
Thanks in advance!
, $source, $match);
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Cory,通常您应该使用 DOMDocument 来执行此操作。使用正则表达式解析 html 并不被认为是好的做法,因为它包含太多隐藏的愚蠢行为并且过于复杂。
http://php.net/manual/en/class.domdocument.php
Cory, typically you should be using DOMDocument to do this. Using regex to parse html is not considered good practice because it contains so many hidden follies and overcomplicates.
http://php.net/manual/en/class.domdocument.php