getInstance( ) 方法

返回值:实例对象


获取任意类的单例,QueryList内部方法,开放出来供大家使用。

原型:

  1. getInstance($class,$arg1,$arg2,......)

参数: $class

类型:string

包含命名空间的类名

参数:$arg1,$arg2,……

可传递任意多个参数


用法

运行下面例子需要先安装Http库:

  1. composer require jaeger/http
  1. <?php
  2. require 'vendor/autoload.php';
  3. use QL\QueryList;
  4. $http = QueryList::getInstance(QL\Ext\Lib\Http::class);
  5. $html = $http->get('http://www.baidu.com');
  6. print_r($html);