gpt4 book ai didi

javascript - 解码 JavaScript 编码的内容

转载 作者:行者123 更新时间:2023-11-30 15:10:56 25 4
gpt4 key购买 nike

我正在编写一个网络爬虫工具来收集电子邮件地址。下载 HTML 内容并使用 DomCrawler 解析后,我得到了这个节点值:

<!--
document.write("<a rel='nofollow' href='mailto:&#104;&#105;&#101;&#117;&#98;&#100;&#115;&#104;&#97;&#112;&#112;&#121;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;'>&#104;&#105;&#101;&#117;&#98;&#100;&#115;&#104;&#97;&#112;&#112;&#121;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;");
//-->This email address has been protected. You need to enable JavaScript to view the content.

我如何解码它?

最佳答案

该值只是原始字符串中字符的 html 编码值,因此在 PHP 中您可以使用 html_entity_decode 获取原始文本。

$returnValue = html_entity_decode('mailto:&#104;&#105;&#101;&#117;&#98;&#100;&#115;&#104;&#97;&#112;&#112;&#121;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;'>&#104;&#105;&#101;&#117;&#98;&#100;&#115;&#104;&#97;&#112;&#112;&#121;&#64;&#103;&#109;&#97;&#105;&#108;&#46;&#99;&#111;&#109;', ENT_COMPAT);

参见:https://www.functions-online.com/html_entity_decode.html

关于javascript - 解码 JavaScript 编码的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45125266/

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