使用curl_setopt发布数组

2022-08-30 19:40:33

附加的代码返回“注意:数组到字符串转换...”。简单地说,我的数组作为包含“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);

?>

答案 1

使用 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


答案 2

完成你所追求的最好方法是使用http_build_query()。


推荐