我想使用API向服务器发送阵列。我不知道如何使用API $_POST
返回API中的值。那我就得到价值
我的代码在这里
$data=array('mobile'=>'123456789','title'=>"hello",'firstName'=>'john');
// get form data i can get this working
//$data= array('mobile'=>$_POST["mobile"], 'title'=>$_POST["title"],'firstName'=>$_POST["firstName"]) ;
$client = curl_init('http://localhost:8080/api/apiHandler.php?action=addNew');
curl_setopt($client, CURLOPT_POST, true);
curl_setopt($client, CURLOPT_POSTFIELDS, $data);
curl_setopt($client, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($client);
curl_close($client);
所以现在我的api文件夹比我可以调用所有$_POST
的示例了。
//api
if($_GET["action"] == 'addNew'){
// i can get value
$data= array('mobile'=>$_POST["mobile"], 'title'=>$_POST["title"],'firstName'=>$_POST["firstName"]) ;
}
如何获取我的第一个Array值。抱歉,语言不好