PHP code example of antanasga / xmlrpcclient
1. Go to this page and download the library: Download antanasga/xmlrpcclient 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/ */
antanasga / xmlrpcclient example snippets
use AntanasGa\XmlRpcClient\Client;
$connection = new Client('http://localhost:8069');
$response = $connection->posts('search');
if ($connection->errorInfo() !== null) {
// handle error
}