- function do_call($host,$port,$request) //定义函数
- {
- $fp=fsockopen($host,$port,$errno,$errstr);
- $query="post /default/php/server.php http/1.0nuser_agent:this is a dummy clientnhost:".
- $host."ncontent-type:text/xmlncontent-length:".
- strlen($request)."nn".$request."n";
- if(!fputs($fp,$query,strlen($query)))
- {//开源代码Vevb.com
- $errstr="write error";
- return 0;
- }
- $contents='';
- while(!feof($fp))
- {
- $contents.=fgets($fp);
- }
- fclose($fp);
- return $contents;
- }
- $host='localhost'; //定义host地址
- $port=80; //定义端口
- $obj->type="datetime"; //定义对象
- $obj->scalar="20040420t13:32:40";
- $obj->timestamp=1082460760;
- $request=xmlrpc_encode_request('dummyserver',$obj); //为php生成xml
- $response=do_call($host,$port,$request); //调用函数
- $xmlrpctype=xmlrpc_get_type($response); //获取xmlrpc类型
- print_r($xmlrpctype); //输出结果
- ?>
新闻热点
疑难解答