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.
我想从 facebook.com 之类的网站中提取隐藏变量的变量。我如何使用 cURL 做到这一点。
谢谢
请看这个问题的第一个答案。你永远不应该尝试使用 Regex 来解析 HTML。它不起作用。改为使用 PHP 文档对象模型来解析文档:请参阅此问题。
phpQuery是一个很好的工具,可以完成您想做的事情,它本质上为您提供了 PHP 中熟悉的 jQuery API(CSS 选择器等)。
正则表达式:
/<input.+?type=['"]?hidden['"]?.+?value=['"]?(.+?)['"]?/si
我不知道如何使这个正则表达式不依赖于值的位置。