gpt4 book ai didi

php - 使用 curl_setopt 发布数组

转载 作者:IT王子 更新时间:2023-10-29 00:05:43 25 4
gpt4 key购买 nike

附加代码返回“注意:数组到字符串的转换......”。只是我的数组作为包含“Array”字样的字符串被处理到远程服务器。其余变量都很好。

如何在没有这个问题的情况下传递我的数组 $anarray

<?php

$data = array(
'anarray' => $anarray,
'var1' => $var1,
'var2' => $var2
);

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, "MY_URL");
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

curl_exec($ch);

?>

最佳答案

使用 http_build_query()

curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
// The values of variables will be shown but since we don't have them this is what we get

然后您可以使用 $_POST 超全局

正常访问它

关于php - 使用 curl_setopt 发布数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2158138/

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