gpt4 book ai didi

html - 如何使用 PHPQuery 删除 HTML 标签?

转载 作者:太空狗 更新时间:2023-10-29 15:24:31 25 4
gpt4 key购买 nike

Update1:​​完整的源代码:

$html1 = '<div class="pubanunciomrec" style="background:#FFFFFF;"><script type="text/javascript"><!--
google_ad_slot = "9853257829";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></div>';

$doc = phpQuery::newDocument($html1);
$html1 = $doc->remove('script');
echo $html1;

源代码就是上面这个。我还读到存在一个错误,http://code.google.com/p/phpquery/issues/detail?id=150不知道解决了没有。

关于如何从此 HTML 中删除<脚本>的任何线索?

最好的问候,


你好,

我需要使用 PhpQuery 从 HTML 文档中删除所有 <script> 标签。

我做了以下事情:

$doc = phpQuery::newDocument($html);

$html = $doc['script']->remove();
echo $html;

它不会删除 <script> 标签和内容。可以用 PhpQuery 做到这一点吗?

最好的问候,

最佳答案

这个有效:

$html->find('script')->remove();
echo $html;

这行不通:

$html = $html->find('script')->remove();
echo $html;

关于html - 如何使用 PHPQuery 删除 HTML 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4648819/

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