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.
我注意到,当我使用 初始化 phpQuery 时phpQuery::newDocument($html),传递给该方法的 HTML 发生了重大变化。
phpQuery::newDocument($html)
我看了看课程,发现它正在故意使用phpQuery::createDocumentWrapper().
phpQuery::createDocumentWrapper()
在查看了 API 之后,我找不到任何关于此的信息,我宁愿不更改 phpQuery 本身。
如何防止 phpQuery 更改我传递给该newDocument方法的 HTML?
newDocument
phpquery 没有做出这些改变,libxml 是。这些更改是它修复了格式错误的 html 以便能够正确解析它的结果。所以,要回答你的问题,你不能。