PHP code example of yocto / yoclib-jsonrpc
1. Go to this page and download the library: Download yocto/yoclib-jsonrpc library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
yocto / yoclib-jsonrpc example snippets
use YOCLIB\JSONRPC\JSONRPCException;
use YOCLIB\JSONRPC\Message;
// Create request
$message = Message::createRequest(123,'getInfo',['payments']);
// Create notification
$message = Message::createNotification('notificationEvent',['payed']);
// Create response
$message = Message::createResponse(123,['payments'=>['$10.12','$23.45','$12.34']]);
$object = $message->toObject();
try{
$json = Message::encodeJSON($object);
}catch(JSONRPCException $e){
//Handle encoding exception
}
use YOCLIB\JSONRPC\JSONRPCException;
use YOCLIB\JSONRPC\Message;
$json = file_get_contents('php://input'); // Get request body
try{
$object = Message::decodeJSON($json);
}catch(JSONRPCException $e){
//Handle decoding exception
}
if(Message::isBatch($object)){
foreach($object AS $element){
try{
$message = Message::parse($element);
}catch(JSONRPCException $e){
//Handle message exception
}
}
}else{
try{
$message = Message::parse($object);
}catch(JSONRPCException $e){
//Handle message exception
}
}