gpt4 book ai didi

php - 使用 ZF 的 DOMElement 中的 Html

转载 作者:行者123 更新时间:2023-12-02 15:34:36 24 4
gpt4 key购买 nike

我使用 Zend Framework 和 Zend_Dom_Query 来获取页面并在段落中查找。

这是我的源代码:

$dom = new Zend_Dom_Query($newsData);

$content = '';
$results = $dom->query('p');
foreach ($results as $result) {
$content .= $result->nodeValue;
}

这样,如果该段落包含其他 html 元素,它们就会被删除。例如,如果代码是:<p><a href="#">My link</a></p> ,nodeValue(或textContent)是My link而不是<a href="#">My Link</a> .

如何将 html 保留在 DOMElement 的内容中?

谢谢

最佳答案

class IndexController extends Zend_Controller_Action
{
function getInnerHTML($Node)
{

$Document = new DOMDocument();
$Document->appendChild($Document->importNode($Node,true));
return $Document->saveHTML();
}

function domAction ()
{
$this->_helper->ViewRenderer->setNoRender ();
$newsData = '<body><p><a href="#">My link</a></p></body>';
$dom = new Zend_Dom_Query($newsData);

$content = '';
$results = $dom->query('p/*');
foreach ($results as $result) {
$content .= $this->getInnerHtml ($result);
}

echo htmlentities ($content);
}
}

关于php - 使用 ZF 的 DOMElement 中的 Html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9017505/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com