Habari\XMLRPCClient::open PHP Метод

open() публичный статический Метод

Convenience method to create a new XMLRPCClient object Example: XMLRPCClient::open( 'http://rpc.pingomatic.com' )->weblogUpdates->ping( 'Blog name', 'http://example.com' );
public static open ( string $xmlrpc_entrypoint ) : XMLRPCClient
$xmlrpc_entrypoint string The entrypoint of the remote server
Результат XMLRPCClient The created client object
    public static function open($xmlrpc_entrypoint)
    {
        return new XMLRPCClient($xmlrpc_entrypoint);
    }