今天看了下phprpc的用法,打算以后用c#做一个写针对本blog发博文的桌面程序,这样就可以想什么时候写就什么时候写了!
c#客户端源码。可执行文件在debug文件夹下面
vs 2008开发 c# 3.5
PHP代码
- <?php
- require_once(‘PHPRPC/phprpc_server.php’);
- class xzy
- {
- function login($user,$pass)
- {
- if($user==‘xzy’ && $pass==‘xzy’){
- return true;
- }else{
- return false;
- }
- }
- function hi($name)
- {
- return ‘hi ‘.$name;
- }
- }
- $rpc = new phprpc_server();
- $rpc->add(array(‘login’,‘hi’),new xzy());
- $rpc->start();
- ?>