사실 코드는 비교적 간단합니다.
<?php $url = 'http://127.0.0.1/test.php';//POST指向的链接 $data = array( 'access_token'=>'thekeyvalue' ); $json_data = postData($url, $data); $array = json_decode($json_data,true); echo '<pre class="brush:php;toolbar:false">';print_r($array); function postData($url, $data) { $ch = curl_init(); $timeout = 300; curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_REFERER, "http://www.jb51.net/"); //构造来路 curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $handles = curl_exec($ch); curl_close($ch); return $handles; } ?>
CURL을 사용하여 PHP에서 API 인터페이스에 데이터를 게시하는 더 많은 코드 관련 기사를 보려면 비용을 지불하세요. PHP 중국어 넷에 주목하세요!