gpt4 book ai didi

php - 使用 http_get php

转载 作者:可可西里 更新时间:2023-11-01 16:28:41 25 4
gpt4 key购买 nike

在使用特定 API 提取信息时,文档建议我需要传递 URL 来检索数据。数据以 XML 格式返回,但是要以 JSON 格式接收数据,应指定 'application/json' 的 HTTP Accept header 值。

我正试图在 PHP 中实现这一点,例如检索信息的 URL 是 http://www.example.com?someContent,它以 XML 格式返回数据。

我目前正在使用 http_get来自 PHP 的函数,但是,它似乎根本不起作用。

关于如何提取信息然后以 JSON 格式请求它的任何建议。

以上链接无效。此文档位于 http_get

最佳答案

未经测试,但这应该有效。将 header 选项设置为您要使用的 header 数组。

$response = http_get("http://www.example.com/?someContent", array(
'headers' => array(
'Accept' => 'application/json'
)
), $info);

print_r($info);

http://php.net/manual/en/function.http-get.php

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

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