run() runs the plugin


run( ) method

Return value:Please check the corresponding plug-in documentation

Run QueryList extension

Prototype:

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

Parameters: $class

Type:string

Plug-in name

Parameters: $args

Type: array

Parameters passed to the plugin

Example:

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