getInstance() 任意のクラスのシングルトンを取得します
getInstance( ) メソッド
戻り値: Instance オブジェクト
getInstance($class,$arg1,$arg2,……)
##パラメータ: $classType:
string#ネームスペースを含むクラス名
# #パラメータ: $arg1、$arg2、...任意の数のパラメータを渡すことができます
##使用法
Instance オブジェクト
getInstance($class,$arg1,$arg2,……)
#ネームスペースを含むクラス名
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);