萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> typecho插件編寫教程(六):調用接口

typecho插件編寫教程(六):調用接口

   這篇文章主要介紹了typecho插件編寫教程(六):調用接口,這是系列文章的最後一篇,需要的朋友可以參考下

  此篇我們開始調用接口,我們在插件類中新定義一個方法,起名為send_post,在方法中我們通過系統配置獲取接口調用地址。

  百度給的例子中使用了php的CURL,更高級的使用方法可以學習PHP_cURL初始化和執行方法

  下面我們結合一下百度站長提供的代碼。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 /** * 發送數據 * @param $url 准備發送的url * @param $options 系統配置 */ public static function send_post($url, $options){ //獲取API $api = $options->plugin('BaiduSubmitTest')->api;   //准備數據 if( is_array($url) ){ $urls = $url; }else{ $urls = array($url); }   $ch = curl_init(); $options = array( CURLOPT_URL => $api, CURLOPT_POST => true, CURLOPT_RETURNTRANSFER => true, CURLOPT_POSTFIELDS => implode("n", $urls), CURLOPT_HTTPHEADER => array('Content-Type: text/plain'), ); curl_setopt_array($ch, $options); $result = curl_exec($ch);   //記錄日志 file_put_contents('/tmp/send_log', date('H:i:s') . $result . "n"); }

  由於我們還沒有建立日志系統,所以我們將日志先寫入文件,先看效果吧!

  返回值:

  復制代碼 代碼如下:

  {"remain":48,"success":1}

  Good!看來沒有什麼問題!不過為了保險起見,我還是用typecho自帶的http類重寫了此方法。

  ?

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 public static function send_post($url, $options){ //獲取API $api = $options->plugin('BaiduSubmitTest')->api;   //准備數據 if( is_array($url) ){ $urls = $url; }else{ $urls = array($url); }   //為了保證成功調用,老高先做了判斷 if (false == Typecho_Http_Client::get()) { throw new Typecho_Plugin_Exception(_t('對不起, 您的主機不支持 php-curl 擴展而且沒有打開 allow_url_fopen 功能, 無法正常使用此功能')); }   //發送請求 $http = Typecho_Http_Client::get(); $http->setData(implode("n", $urls)); $http->setHeader('Content-Type','text/plain'); $result = $http->send($api);   //記錄日志 file_put_contents('/tmp/send_log', date('H:i:s') . $result . "n"); } }

  現在我們的插件基本能夠運行了,但是在結構上還可以進一步優化!

copyright © 萬盛學電腦網 all rights reserved