描述
页面传递的时候,用GET或POST把相关数据传递到接口文件。
假设$code和$id都已接收到值,现在要讲这两个字段传递给另外一个接口,地址为$url。
代码
代码如下:
$post_data = array ("code"=>$code,"id"=>$id);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
// post数据
curl_setopt($ch, CURLOPT_POST, 1);
// post的变量
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
$user=json_decode($output,true) ;
输出结果
输出$user,$user为数组模式输出。