20 lines
340 B
PHP
20 lines
340 B
PHP
|
<?php
|
||
|
require_once('giant/Config.php');
|
||
|
|
||
|
Class ProviderStatus
|
||
|
{
|
||
|
function __construct() {
|
||
|
|
||
|
}
|
||
|
|
||
|
function _getPing() {
|
||
|
|
||
|
$structure = new stdClass();
|
||
|
$structure->Type = "";
|
||
|
|
||
|
$soapClient = getClient($_GET['pays'], 'Ping');
|
||
|
$ping = SwitchWSDLFunction('Ping', $structure, $soapClient);
|
||
|
print_r($ping);
|
||
|
}
|
||
|
}
|
||
|
?>
|