getInstance() 모든 클래스의 싱글톤을 가져옵니다.


getInstance( ) 메소드

반환 값: 인스턴스 객체实例对象

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

原型:

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

参数: $class

类型:string

包含命名空间的类名

参数:$arg1,$arg2,……

可传递任意多个参数


用法

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

모든 클래스의 싱글톤, QueryList 내부 메소드를 가져오고 누구나 사용할 수 있습니다.

🎜프로토타입:🎜
🎜getInstance($class,$arg1,$arg2,…)🎜

🎜 🎜매개변수: $class

🎜Type: string🎜🎜네임스페이스의 클래스 이름을 포함합니다🎜

🎜🎜매개변수: $arg1,$arg2,…

🎜매개변수를 원하는 만큼 전달할 수 있습니다🎜

🎜 🎜Usage🎜🎜다음 예제를 실행하려면 먼저 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);
🎜