phpQuery - 如何获得纯HTML

时间:2016-11-30 11:10:19

标签: php phpquery

我正在使用此插件https://github.com/punkave/phpQuery来编辑HTML内容。

这是我的代码,

//$formdata contains plain HTML
$doc = phpQuery::newDocument($formData);
//Some Editing
$editedData = phpQuery::getDocument($doc->getDocumentID());
//This returns object

返回一个对象。有没有办法获得纯HTML?

3 个答案:

答案 0 :(得分:1)

您可以将phpQueryObject对象强制转换为字符串:

$markup = (string) $editedData;

答案 1 :(得分:1)

您也可以使用(版本0.9.5)

$html = pq($editedData)->html();

答案 2 :(得分:0)

http://php.net/manual/en/function.htmlentities.php 我认为这就是你要找的东西