Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
所以,伙计们,我简要地看了一下 curl 文档和 file_get_contents,但我找不到真正符合我需要的东西。我是 php 的新手,它是模块,所以我正在寻求帮助。现在所有的例子都展示了如何复制整个 url。如果我只需要复制网站的一段,该怎么办。只是文章标题或副标题我该怎么做?无论如何我可以指定一些参数来例如从给定的网页中获取这部分:
<div id="newscontent"> //text content </div>
非常感谢你们。我感谢您的帮助。
我不认为 curl 可以处理 html 内容。您必须对其使用 XML 解析器,或者如果您知道元素 ID,则可以使用正则表达式(preg_match、preg_match_all 函数)来查找特定元素。
一个简单的正则表达式示例如下:
http://hu2.php.net/manual/en/function.preg-match-all.php