php-json-rpc/tests/sub.php
候学杰 e51ee9cd59 init
2019-01-04 11:59:05 +08:00

8 lines
166 B
PHP

<?php
include_once dirname(__DIR__).'/vendor/autoload.php';
$client = new \JsonRpc\Client();
$res = $client->call('math.subtract',['12','23',500]);
var_dump($res);