名站网址导航为大家免费提供关于网站编程方面的知识。
PhP下常用正则表达式整理-PhPphp技巧
- 本篇文章的具体介绍如下请大家仔细看
看到这个单词我还不知道怎么读,音标是[hes]读黑森。
hessian是一个轻量级的远程的数据交换工具,使用简单的方法提供了RMI(远程方法调用)的功能. 相比WebService,hessian更简单、快捷。采用的是二进制RPC协议,因为采用的是二进制协议,所以它很适合于发送二进制数据
hessian是独立于语言的。
二、在PhP中怎么用的呢?
你是不是认为这个和soap一样在php.ini中开启一个就可以使用了,我也这么认为的。可
是我要告诉你的是这样的想法是错误的。
需要去下载一个hessianPhP的库来使用。
下载地址http://hessianphp.sourceforge.net/
三、看看怎么使用。
1、网站服务器端。
具体相关代码如下如下:
<?php
include_once('hessianPhP/dist/hessianService.php');
class helloWorldService
{
public function __construct()
{
}
public function add($a, $b)
{
return $a $b;
}
}
$wrapper = new hessianService();
$wrapper->registerObject(new helloWorldService);
$wrapper->displayInfo = true;
$wrapper->service();
?>
网站服务器端结果
2、客户端
具体相关代码如下如下:
<?php
require_once 'hessianPhP/dist/hessianClient.php';
hessian::errorReporting(hESSIAN_SILENT);
$url = 'http://localhost/info.php';
$proxy = & new hessianClient($url);
$sum = $proxy->add(3, 5);
echo $sum;
if(hessian::error()) {
$errors = hessian::error();
print_r($erros->message);
//var_dump($errors);
}
?>
client结果
8
呵呵!看来试用成功了。
四、要特别注意的一些问题。
发现有个朋友使用的时候碰到的问题总结贴,很不错。
关于网站编程方面的知识就说道这里了,希望能够对大家有作用。,