gpt4 book ai didi

php - 如何从任何网址将内容另存为 html

转载 作者:行者123 更新时间:2023-12-04 06:29:14 24 4
gpt4 key购买 nike

我的问题是,我们如何为给定的 url 保存一些 html 页面……就像我将 url 放在“http://www.google.com/”然后我们如何通过 php 在服务器上将此页面保存为 html .. . 目的是用 utf-8 字符集读取该页面.. 当前字符集是 windows-1255 .. 我想将 chrset 更改为 utf-8 或者如果有任何选项可以在那里读取当前字符集的页面是该页面中的其他语言...

其实我想在搜索完成后阅读内容..这个页面“http://elyon1.court.gov.il/verdictssearch/HebrewVerdictsSearch.aspx”

如果有什么解决办法......

我正在使用 PHP 作为服务器端语言..

最佳答案

您可以使用 file_get_contents 保存内容:

$page = file_get_contents('http://elyon1.court.gov.il/verdictssearch/HebrewVerdictsSearch.aspx');

然后用 iconv 转换字符集:
$converted_page = iconv('windows-1252','utf-8',$page);

关于php - 如何从任何网址将内容另存为 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5642598/

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