将重新排序的数组值发送到api的sanizatied值

时间:2014-10-22 05:24:26

标签: php arrays curl

我按照我不想要的顺序在数组中获取post值。

我得到的订单是

apipost.php?option1=1&option2=1&destination=3232323&time=201410201510

我必须将数据发布到api。

对于发布数据,这是我的代码,肯定缺少一些逻辑。

define('API_SERVICE_URL', '//192.168.x.x/x.php');

$ch = curl_init();

curl_setopt($ch, CURLOPT_URL, API_SERVICE_URL);

curl_setopt($ch, CURLOPT_POST, 1);

curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($parameters));

curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

$result = curl_exec ($ch);

curl_close ($ch);

它有4个参数。

我也必须对帖子值进行消毒。由于剩下的工作,无法进行消毒 请帮忙,因为我迷路了

x.php?destination=<dest>&option1=<selection1>&option2=<selection2>&time=<YYYYMMDDHHMM>

example:
x.php?destination=012121242120&option1=2&option2=3&time=201410201510

0 个答案:

没有答案