gpt4 book ai didi

php - php中如何获取application/json类型的内容?

转载 作者:行者123 更新时间:2023-12-04 18:02:17 24 4
gpt4 key购买 nike

我使用了 file_get_contents('php://input') 但有时它不起作用。我使用 getallheaders() 检查 header ,Content-Length 始终是内容的大小,但有时 file_get_contents('php://input') 返回 null。

最佳答案

试试这个:

$handle = fopen('php://input','r');
$jsonInput = fgets($handle);
$decoded = json_decode($jsonInput,true);

//$decoded['tag'] you data

关于php - php中如何获取application/json类型的内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33008565/

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