getInstance() 任意のクラスのシングルトンを取得します


getInstance( ) メソッド

戻り値:

Instance オブジェクト

誰でも使用できる任意のクラスのシングルトン、QueryList 内部メソッドを取得します。

プロトタイプ:

getInstance($class,$arg1,$arg2,……)

##パラメータ: $classType:

string

#ネームスペースを含むクラス名

# #パラメータ: $arg1、$arg2、...任意の数のパラメータを渡すことができます


##使用法

次の例を実行するには、Http ライブラリをインストールする必要があります:
composer require jaeger/http
<?php
require 'vendor/autoload.php';
use QL\QueryList;
$http = QueryList::getInstance(QL\Ext\Lib\Http::class);
$html = $http->get('http://www.baidu.com');
print_r($html);