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);
?>
Python高性能(第2版)
[加] 加布丽埃勒•拉纳诺(Gabriele Lanaro) / 袁国忠 / 人民邮电出版社 / 2018-8 / 59.00元
本书是一本Python性能提升指南,展示了如何利用Python的原生库以及丰富的第三方库来构建健壮的应用程序。书中阐释了如何利用各种剖析器来找出Python应用程序的性能瓶颈,并应用正确的算法和高效的数据结构来解决它们;介绍了如何有效地利用NumPy、Pandas和Cython高性能地执行数值计算;解释了异步编程的相关概念,以及如何利用响应式编程实现响应式应用程序;概述了并行编程的概念,并论述了如......一起来看看 《Python高性能(第2版)》 这本书的介绍吧!
