1、直接file_get_contents("php://input") 这个函数就可以接到接口传参!
2、建议使用json格式数据进行交互。
看代码应该是test2去获取test1的数据,getData.php里,加上对应的接口文件名应该就好了
B service : http://www.test2.com
//getData.php$url = 'http://www.test1.com/data.php'
$ch = curl_init()
curl_setopt($ch, CURLOPT_URL, $url)
curl_setopt($ch, CURLOPT_HEADER, true)
$result = curl_exec($ch)
echo $result
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)