Login   Register  
PHP Classes
elePHPant
Icontem

File: rpcfunc.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Gregory  >  PHP RPC Lite  >  rpcfunc.php  >  Download  
File: rpcfunc.php
Role: Example script
Content type: text/plain
Description: Functions, that called remotely (for server only)
Class: PHP RPC Lite
Simple RPC client and server based only on PHP
Author: By
Last change: Added get_service_name() function
Date: 2005-02-06 10:10
Size: 116 bytes
 

Contents

Class file image Download
<?

function sum($a$b) {
    return 
$a $b;
}

function 
get_service_name() {
    return 
"Test Service";
}

?>