PHP code example of ezcompany / probe

1. Go to this page and download the library: Download ezcompany/probe 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/ */

    

ezcompany / probe example snippets


$url = 'https://example.org/xmlrpc?probe_key=<secret_key>';
$args = [
  'probe' => [[
    'cron_last',
  ]],
];
$result = xmlrpc($url, $args);
print_r($result);