PHP Classes

File: rpcfunc.php

Recommend this page to a friend!
  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: 19 years ago
Size: 116 bytes
 

Contents

Class file image Download
<?

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

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

?>