File: server.php

package info (click to toggle)
php-datto-json-rpc 6.1.0-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 248 kB
  • sloc: php: 918; makefile: 22
file content (16 lines) | stat: -rw-r--r-- 537 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

use Datto\JsonRpc\Server;
use Datto\JsonRpc\Examples\Api;

require_once __DIR__ . '/../vendor/autoload.php';

// Example 1. Send a reply:
$server = new Server(new Api());
$reply = $server->reply('{"jsonrpc":"2.0","id":1,"method":"add","params":[1,2]}');

echo "Example 1. Send a reply:\n",
    "   \$server = new Server(new Api());\n",
    "   \$reply = \$server->reply('{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"add\",\"params\":[1,2]}');\n",
    "   // reply: {$reply}\n";
        // reply: {"jsonrpc":"2.0","id":1,"result":3}