PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Martin Barker   PHP JSON RPC Objective Server   index.php   Download  
File: index.php
Role: Example script
Content type: text/plain
Description: Example Server entry point file
Class: PHP JSON RPC Objective Server
Handle API requests to a JSON RPC server
Author: By
Last change:
Date: 8 years ago
Size: 187 bytes
 

Contents

Class file image Download
<?php
include "intortus/autoload.php";
include
"API/example.php";

$test = new \intortus\jsonrpc\Handler();
$test->createObject("example", API\example::getInstance());
$test->begin();
?>