<?php
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))) {
$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); //输出结果
?>
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn