我有数组,我需要使用发布请求发送这个数组。
我将此数组序列化为字符串,我需要将整个数组作为一个后参数发送。
我用于这个 CURL,这是 index.php 代码:
$name = array(2,3,"5.5");
$name = serialize($name);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'http://site.com/retrieve_post.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, 'name='.$name);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
curl_setopt($ch, CURLOPT_HTTPHEADER, array('User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:19.0) Gecko/20100101 Firefox/19.0') );
$data = curl_exec($ch);
curl_close($ch);
这是retrieve_post.php
文件:
$arr = unserialize($_POST['name']);
$hand = fopen("test.txt", "w+");
if (is_array( $arr )) {
fwrite($hand, "This is array");
}
else {
fwrite($hand, "Not array");
}
fclose($hand);
问题是,在 之后unserialize($_POST['name'])
,我得到的不是数组。
在test.txt
文件中写入:“不是数组”。
为什么,$arr
没有数组类型?我错在哪里?