PHP code example of brightnucleus / jasper-client
1. Go to this page and download the library: Download brightnucleus/jasper-client 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/ */
brightnucleus / jasper-client example snippets
use Brightucleus\JasperClient\EchoClient;
use Brightucleus\JasperClient\SoapTypes\EchoClient\EchoRequest;
$client = new EchoClient();
$result = $client->echo(new EchoRequest('Hello World!'));
echo $result->getValue(); // Output: 'Hello World!'