gpt4 book ai didi

php - 在 PHP 中获取 POST 数据

转载 作者:行者123 更新时间:2023-11-29 14:22:18 25 4
gpt4 key购买 nike

所以我正在运行它来检索我的 POST 数据:

$jsonString = file_get_contents('php://input');

如果我打印出 $jsonString,我会得到这样的结果:

Something=Value&OtherThing=Value&Etc=Yougetmydrift

过去我已经能够做到这一点:

$object = json_decode($jsonString);
$something = $object->Something;
echo $something; // would print 'Value'

但我目前遇到这种情况不起作用。我正在使用 Android SDK,后端的 php://input 似乎没有返回任何内容。有谁知道这是为什么吗?

最佳答案

我想你只是想:

echo $_POST["Something"];

关于php - 在 PHP 中获取 POST 数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6140772/

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