分享經驗,是爲了讓你少走彎路。————華偉君原創·技術博客php
###在PHP中模擬post提交方式,調用JSON接口mysql
在Jquery中咱們能夠很方便的使用$.ajax()方法來調用數據接口,獲取數據,而後進行解析應用。 在PHP中,雖然沒有類如$.ajax()的直接方法,經過接口獲取數據,可是咱們能夠經過自定義的方式,編寫調用接口的封裝函數,來實現咱們的post接口調用方式。ajax
基本實現原理sql
/** * 模擬post進行url請求 * @param string $url * @param string $param */ function request_post($url = '', $param = '') { if (empty($url) || empty($param)) { return false; } $postUrl = $url; $curlPost = $param; $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOPT_URL,$postUrl); //抓取指定網頁 curl_setopt($ch, CURLOPT_HEADER, 0); //設置header curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //要求結果爲字符串且輸出到屏幕上 curl_setopt($ch, CURLOPT_POST, 1); //post提交方式 curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); $data = curl_exec($ch); //運行curl curl_close($ch); return $data; }
多參數時具體調用實例,將post進行拼接json
function testAction(){ $url = 'http://my.oschina.net/chinacion/blog'; $post_data['appid'] = '10'; $post_data['appkey'] = 'cmbohpffXVR03nIpkkQXaAA1Vf5nO4nQ'; $post_data['member_name'] = 'zsjs123'; $post_data['password'] = '123456'; $post_data['email'] = 'zsjs123@126.com'; $o = ""; foreach ( $post_data as $k => $v ) { $o.= "$k=" . urlencode( $v ). "&" ; } $post_data = substr($o,0,-1); //去掉結尾的「&」 $res = $this->request_post($url, $post_data); print_r($res); }
這樣就提交請求,而且獲取請求結果了。通常返回的結果是json格式的。app
也能夠改形成下面的方式,將拼接也封裝起來。curl
/** * 模擬post進行url請求 * @param string $url * @param array $post_data */ function request_post($url = '', $post_data = array()) { if (empty($url) || empty($post_data)) { return false; } $o = ""; foreach ( $post_data as $k => $v ) { $o.= "$k=" . urlencode( $v ). "&" ; } $post_data = substr($o,0,-1); $postUrl = $url; $curlPost = $post_data; $ch = curl_init();//初始化curl curl_setopt($ch, CURLOPT_URL,$postUrl);//抓取指定網頁 curl_setopt($ch, CURLOPT_HEADER, 0);//設置header curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求結果爲字符串且輸出到屏幕上 curl_setopt($ch, CURLOPT_POST, 1);//post提交方式 curl_setopt($ch, CURLOPT_POSTFIELDS, $curlPost); $data = curl_exec($ch);//運行curl curl_close($ch); return $data; }
這樣調用的時候就更簡潔了。函數
function testAction(){ $url = 'http://my.oschina.net/chinacion/blog'; $post_data['appid'] = '10'; $post_data['appkey'] = 'cmbohpffXVR03nIpkkQXaAA1Vf5nO4nQ'; $post_data['member_name'] = 'zsjs124'; $post_data['password'] = '123456'; $post_data['email'] = 'zsjs124@126.com'; //$post_data = array(); $res = $this->request_post($url, $post_data); print_r($res); }
PHP中對得到的json結果進行解析,能夠直接使用函數json_decodepost
json_decode函數詳解: json_decode — 對 JSON 格式的字符串進行編碼 語法: mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int $options = 0 ]]] ) 參數詳解: $json:待解碼的 json string 格式的字符串,這個函數僅能處理 UTF-8 編碼的數據。 $assoc:當該參數爲 TRUE 時,將返回 array 而非 object 。 $depth:用戶指定的遞歸深度 $options:JSON的位掩碼解碼選項。目前只支持JSON_BIGINT_AS_STRING(默認是將整數作爲浮點數)this
** json_decode實例**
<?php $json = '{"a":"php","b":"mysql","c":3}'; $json_Class=json_decode($json); $json_Array=json_decode($json, true); print_r($json_Class); print_r($json_Array); ?>
程序輸出:
stdClass Object ( [a] => php [b] => mysql [c] => 3 ) Array ( [a] => php [b] => mysql [c] => 3 )
最後 少俠,看到這兒了,舉手之勞點個贊噻~