This is JSON-RPC implementaion, server in php and client in javascript based on version 1.1 of the Specification
<?php
require('json-rpc.php');
class Foo {
function ping($str) {
return "pong '$str'";
}
}
handle_json_rpc(new Foo());
?>
rpc({
url: "foo.php",
error: function(error) {
alert(error.message);
},
// errorOnAbort: true,
debug: function(json, which) {
console.log(which + ': ' + JSON.stringify(json));
}
})(function(foo) {
// now here you can access methods from Foo class
foo.ping("Hello")(function(response) {
alert(response);
});
});
if you prefer to use promises, you can use option promisify: true
:
rpc({
url: 'servce.php'.
promisify: true
}).then(function(service) {
service.ping("hello").then(function(response) {
alert(resonse);
});
});
- mbstring php module
Released under the MIT license
Copyright (c) 2011-2021 Jakub T. Jankiewicz