SimpleXMLRPC
- 授权协议: GPL
- 开发语言: PHP
- 操作系统: 跨平台
- 软件首页: http://simplexmlrpc.sourceforge.net/
软件介绍
Simple XMLRPC 是 一个 PHP 语言对 XML-RPC 协议的封装。
示例代码:
<?php
require_once ('simpleXMLRPCClient.class.php');
$server_path = '/simplexmlrpc/index.php';
$server_hostname = 'localhost';
$sendHTTPS = ;
$serverPort = NULL;
$xmlrpc = new SimpleXMLRPCClient ();
$xmlrpc->debug = ;
$xmlrpc->SetXMLRPCServer ($server_hostname, $server_path, $serverPort, $sendHTTPS);
# Array that we want to send
$arrayOfStructs = Array ( Array ('curly' => 3),
Array ('curly' => 2)
);
# Create the XMLRPC message with the methodName
$xmlrpc->CreateXMLRPCMessage ('validator1.arrayOfStructsTest');
# Now we simply add the array we want to send with the message
$xmlrpc->AddArray ($arrayOfStructs);
# And now we send it and we get back an array
$array = $xmlrpc->SendXMLRPC ();
# print out the returned array
print_r ($array);
?>
数据库系统概念
Abraham Silberschatz、Henry F. Korth、S. Sudarshan / 杨冬青、马秀莉、唐世渭 / 机械工业 / 2006-10-01 / 69.50元
本书是数据库系统方面的经典教材之一。国际上许多著名大学包括斯坦福大学、耶鲁大学、得克萨斯大学、康奈尔大学、伊利诺伊大学、印度理工学院等都采用本书作为教科书。我国也有许多所大学采用本书以前版本的中文版作为本科生和研究生的数据库课程的教材和主要教学参考书,收到了良好的效果。 本书调整和新增内容:调整了第4版的讲授顺序。首先介绍SQL及其高级特性,使学生容易接受数据库设计的概念。新增数据库设计的专......一起来看看 《数据库系统概念》 这本书的介绍吧!
