Request Parameter:
"; print "http://mt.ninth.jp/weblogUpdate.php?t=[Blog Title]&u=[Blog URL]&h=[XML-RPC Host]&p=[XML-RPC Path]

"; print "Example:
"; print "t=Qlogue&u=http://mt.ninth.jp/&h=rpc.reader.livedoor.com&p=/ping"; print ""; } function send_ping($blog_title, $blog_url, $xmlrpc_host, $xmlrpc_path){ //メッセージ作成 $params=array( new XML_RPC_Value($blog_title,'string'), new XML_RPC_Value($blog_url,'string') ); $message = new XML_RPC_Message('weblogUpdates.ping',$params); //クライアントの作成 $client = new XML_RPC_client( $xmlrpc_path, $xmlrpc_host, 80 ); //メッセージ送信 $response = $client->send($message); //レスポンス if (!$response->faultCode()) { print "success"; }else{ print "failed"; } } ?>