我正在使用CURL
. 并且数据是多维数组。
Array
(
[0] => stdClass Object
(
[id] => 1
)
[1] => stdClass Object
(
[id] => 0
)
[2] => stdClass Object
(
[id] => 11
)
)
我正在使用下面的代码来发送数据。
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_VERBOSE, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, "my_url");
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, $array); // $array is my above data
但是在服务器上,当我尝试将这些传入数据放入文件时,或者只是print_r
它给了我下面的输出
Array
(
[0] => Array
[1] => Array
[2] => Array
)
但我想要多维的输出。
我试过了,print_r($_POST[0])
但它只给出Array
文本。