run( ) 方法

返回值:需查看对应的插件文档


运行QueryList扩展

原型:

  1. run($class,$args = array())

参数: $class

类型:string

插件名称

参数: $args

类型:array

传递给插件的参数

例:

  1. $login = QueryList::run('Login',[
  2. 'target' => 'http://xxx.com/login.php',
  3. 'method' => 'post',
  4. 'params' => ['username'=>'admin','password'=>'admin'],
  5. 'cookiePath' => './cookie123.txt'
  6. ]);
  7. //........