gpt4 book ai didi

php - php中的post方法

转载 作者:搜寻专家 更新时间:2023-11-01 08:14:32 26 4
gpt4 key购买 nike

我正在尝试通过 android 中的 post 方法发送数据。但是我如何在服务器中接收数据。我的服务器在 php 中。我在 php $_post[] 中找到了一个方法。我该如何使用它?我的客户端代码是

client=new DefaultHttpClient();
HttpPost request=new HttpPost("http://10.0.2.2/php_server/index.php");
HttpEntity entity;

try
{
StringEntity string=new StringEntity("I am android");

entity=string;
request.setEntity(entity);

HttpResponse response=client.execute(request);
}
catch(Exception e)
{
Log.e("socket connection", e.toString());
}

最佳答案

这是非常基础的 PHP。 $_POST是 PHP 的超全局数组,用于存储使用 POST 方法发送到特定脚本的数据。

您可以将其用作任何其他 PHP array

下面的代码将输出 $_POST 的所有键和对应的值:

foreach ($_POST as $key => $value) {
echo $key . ' = ' . var_export($value, true);
}

如果你确切地知道你需要哪个键,你可以在数组上使用 [] 来获取它,如下所示:

$my_value = $_POST['my_post_field_sent_by_android_app'];

关于php - php中的post方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6176796/

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