簡介:這是PHP企業級應用之WebService續篇的詳細頁面,介紹了和php,有關的知識、技巧、經驗,和一些php源碼等。
class='pingjiaF' frameborder='0' src='http://biancheng.dnbcw.info/pingjia.php?id=323134' scrolling='no'>
PHP企業級應用之WebService篇
Ping Service,部落格程式提供一種通知機制,以便在第一時間將部落格的更新資訊發布到提供Ping Service服務的網站,寫彙總的時候研究了一下。
先看 標準 吧
這是一個標準的Ping Service,用XMLRPC來傳資料的,注釋寫的這麼詳細,代碼說明就不需要了吧,PHP5開啟XMLRPC方法
client.php
以下為引用的內容: <?php $host = 'zxsv'; $port = 80; $rpc_server = '/test/xmlrpc_server.php'; $title = 'zxsv'; $server = 'http://zxsv/test/'; $rss = 'http://zxsv/test/rss.php'; //weblogUpdates.Ping方法 $Ping = xmlrpc_encode_request('weblogUpdates.Ping', array($title, $server )); //weblogUpdates.extendedPing方法 $extendedPing = xmlrpc_encode_request('weblogUpdates.extendedPing', array($title, $server, $rss )); //調用rpc_client_call函數把所有請求發送給XML-RPC伺服器端後擷取資訊 $response = rpc_client_call($host, $port, $rpc_server, $Ping); $split = '<?xml version="1.0" encoding="iso-8859-1"?>'; $xml = explode($split, $response); $xml = $split . array_pop($xml); $response = xmlrpc_decode($xml); //輸出從RPC伺服器端擷取的資訊 print_r($response); /** * 函數:提供給用戶端進行串連XML-RPC伺服器端的函數 * 參數: * $host 需要串連的主機 * $port 串連主機的連接埠 * $rpc_server XML-RPC伺服器端檔案 * $request 封裝的XML請求資訊 * 返回:串連成功成功返回由伺服器端返回的XML資訊,失敗返回false */ function rpc_client_call($host, $port, $rpc_server, $request) { $fp = fsockopen($host, $port); $query = "POST $rpc_server HTTP/1.0\nUser_Agent: XML-RPC Client\nHost: ".$host."\nContent-Type: text/xml\nContent-Length: ".strlen($request)."\n\n".$request."\n"; if (!fputs($fp, $query, strlen($query))) { $errstr = "Write error"; return false; } $contents = ''; while (!feof($fp)){ $contents .= fgets($fp); } fclose($fp); return $contents; } ?> |
server.php
以下為引用的內容: <?php /** * 函數:提供給RPC用戶端調用的函數 * 參數: * $method 用戶端需要調用的函數 * $params 用戶端需要調用的函數的參數數組 * 返回:返回指定調用結果 */ function rpc_server_extendedping($method, $params) { $title = $params[0]; $server = $params[1]; $rss = $params[2]; //中間的判斷,成功返回$XML_RPC_String $XML_RPC_String = array('flerror'=>false,'message'=>'Thanks for the ping.'); return $XML_RPC_String; } function rpc_server_ping($method, $params) { $title = $params[0]; $server = $params[1]; //中間的判斷,成功返回$XML_RPC_String $XML_RPC_String = array('flerror'=>false,'message'=>'Thanks for the ping.'); return $XML_RPC_String; } //產生一個XML-RPC的伺服器端 $xmlrpc_server = xmlrpc_server_create(); //註冊一個伺服器端調用的方法rpc_server,實際指向的是rpc_server_extendedping函數 xmlrpc_server_register_method($xmlrpc_server, "weblogUpdates.extendedPing", "rpc_server_extendedping"); xmlrpc_server_register_method($xmlrpc_server, "weblogUpdates.Ping", "rpc_server_ping"); //接受用戶端POST過來的XML資料 $request = $HTTP_RAW_POST_DATA; //print_r($request); //執行調用用戶端的XML請求後擷取執行結果 $xmlrpc_response = xmlrpc_server_call_method($xmlrpc_server, $request, null); //把函數處理後的結果XML進行輸出 header('Content-Type: text/xml'); echo $xmlrpc_response; //銷毀XML-RPC伺服器端資源 xmlrpc_server_destroy($xmlrpc_server); ?> |
類寫的,有BUG
以下為引用的內容: <?php class Pings { public $xmlrpc_server; public $xmlrpc_response; public $methodName; public function __construct() { //產生一個XML-RPC的伺服器端 $this->xmlrpc_server = xmlrpc_server_create (); $this->run (); } //註冊一個伺服器端調用的方法rpc_server,實際指向的是ping函數 public function rpc_server() { $this->methodName = !$this->methodName ? 'weblogUpdates.extendedPing':'weblogUpdates.Ping'; xmlrpc_server_register_method ( $this->xmlrpc_server, $this->methodName, array (__CLASS__, "ping")); } /** * 函數:提供給RPC用戶端調用的函數 * 參數: * $method 用戶端需要調用的函數 * $params 用戶端需要調用的函數的參數數組 * 返回:返回指定調用結果 */ public function ping($method, $params) { $this->title = $params [0]; $this->server = $params [1]; $this->rss = $params [2]; $this->tag = $params [3]; //$a = $this->title ? $this->update():''; $string = array ('flerror' => false, 'message' => 'Thanks for the ping.', 'legal' => "You agree that use of the blueidea.com ping service is governed by the Terms of Use found at www.blueidea.com." ); return $string; } public function update(){ echo '這裡放更新的一些條件'; } public function run() { $this->rpc_server (); $request = isset ( $GLOBALS ["HTTP_RAW_POST_DATA"] ) ? file_get_contents ( "php://input" ) : $GLOBALS ["HTTP_RAW_POST_DATA"]; $this->xmlrpc_response = xmlrpc_server_call_method ( $this->xmlrpc_server, $request, null ); //把函數處理後的結果XML進行輸出 header ( 'Content-Type: text/xml' ); echo $this->xmlrpc_response; } //銷毀XML-RPC伺服器端資源 public function __destruct() { xmlrpc_server_destroy ( $this->xmlrpc_server ); } } $Obj = new Pings ( ); ?> |
WebService的最常用的兩種方法算是寫齊了
“PHP企業級應用之WebService續篇”的更多相關文章 》
愛J2EE關注Java邁克爾傑克遜視頻站JSON線上工具
http://biancheng.dnbcw.info/php/323134.html pageNo:16