<?php
include('../include/phprpc_server.php');
Class Math {
function add($a, $b) {
return $a + $b;
}
function sub($a, $b) {
return $a - $b;
}
function hello($name) {
echo "hello $name";
}
function inc(&$n) {
return ++$n;
}
}
new phprpc_server(array('add', 'sub', 'hello', 'inc'), false, 'Math');
?>