phpQuery - 如何变得简单 HTML
phpQuery - how to get plain HTML
我正在使用这个插件,https://github.com/punkave/phpQuery 来编辑 HTML 内容。
这是我的代码,
//$formdata contains plain HTML
$doc = phpQuery::newDocument($formData);
//Some Editing
$editedData = phpQuery::getDocument($doc->getDocumentID());
//This returns object
这returns一个对象。有没有什么办法可以搞定 HTML?
http://php.net/manual/en/function.htmlentities.php
我想这就是你要找的
您可以将 phpQueryObject
对象转换为字符串:
$markup = (string) $editedData;
您也可以使用(版本 0.9.5)
$html = pq($editedData)->html();
我正在使用这个插件,https://github.com/punkave/phpQuery 来编辑 HTML 内容。
这是我的代码,
//$formdata contains plain HTML
$doc = phpQuery::newDocument($formData);
//Some Editing
$editedData = phpQuery::getDocument($doc->getDocumentID());
//This returns object
这returns一个对象。有没有什么办法可以搞定 HTML?
http://php.net/manual/en/function.htmlentities.php 我想这就是你要找的
您可以将 phpQueryObject
对象转换为字符串:
$markup = (string) $editedData;
您也可以使用(版本 0.9.5)
$html = pq($editedData)->html();