我有数组,我需要使用post请求发送此数组。
我将这个数组序列化为字符串,我需要将整个数组作为一个post参数发送。
我用这个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
文件中写入:“Not array”。
为什么,$arr
没有数组类型?哪里错了?
答案 0 :(得分:0)
您可以尝试implode
而不是序列化。
$name = implode(',', $name);
在另一个文件中,您可以尝试explode
。
$arr = explode(',', $_POST['name']);