https://github.com/sjonhortensius/toobasic-rpc
A very basic Json &XmlRpcClient for PHP, with SCGI support
https://github.com/sjonhortensius/toobasic-rpc
json-rpc-client scgi xml-rpc-client
Last synced: about 2 months ago
JSON representation
A very basic Json &XmlRpcClient for PHP, with SCGI support
- Host: GitHub
- URL: https://github.com/sjonhortensius/toobasic-rpc
- Owner: SjonHortensius
- License: mit
- Created: 2016-08-18T17:12:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-30T15:10:04.000Z (almost 8 years ago)
- Last Synced: 2025-02-08T15:46:46.098Z (4 months ago)
- Topics: json-rpc-client, scgi, xml-rpc-client
- Language: PHP
- Homepage:
- Size: 12.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Contains a JSON-RPC and XML-RPC client; with support for SCGI. Any method the server supports (eg. `getInfo` below), can be called as a method on the client. Here's an example how to use it to connect to bitcoin:
```php
getinfo());
```Here's an example how Transports can be chained for example for utorrent, to perform XMLRPC requests over SCGI:
```php
system->listMethods());
```
Here's an example how to connect to ethereum over json-rpc:
```php
eth_syncing());
```