gpt4 book ai didi

php - 无法使用 simplexml 解析 https 上的 XML 文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:43:48 25 4
gpt4 key购买 nike

我用 php 编写了一小段代码,在 http 上运行良好,但是当我将我的网站转移到 https 上时,它就不再工作了。

$mosaique = simplexml_load_file('https://example.com/file.xml');

我尝试使用 curl 函数,但它返回错误。

$path = 'https://example.com/file.xml';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$path);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
$xmlreturn = curl_exec($ch);
if($xmlreturn === false) {
$erreur = "--";
return $erreur;
}
curl_close($ch);
$mosaique = simplexml_load_string($xmlreturn, 'SimpleXMLElement', LIBXML_NOCDATA);*

你有办法在 https 上解析 xml 吗?

最佳答案

如果你想让它与 HTTP 安全连接一起工作,你需要启用 openssl 扩展。要启用它,您必须执行以下步骤:

  1. 打开php.ini配置文件
  2. 在文件中搜索extension=php_openssl.dll
  3. 如果您有类似 ;extension=php_openssl.dll 的行,请删除分号以启用它。
  4. 保存文件并重新启动您的网络服务器

完成上述步骤后,您可以尝试检查它是否有效。

关于php - 无法使用 simplexml 解析 https 上的 XML 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40936381/

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