PHP code example of jaeger / querylist-rule-google
1. Go to this page and download the library: Download jaeger/querylist-rule-google library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
jaeger / querylist-rule-google example snippets
use QL\QueryList;
use QL\Ext\Google;
$ql = QueryList::getInstance();
$ql->use(Google::class);
//or Custom function name
$ql->use(Google::class,'google');
$searcher = $ql->google()->search('QueryList');
$data = $searcher->setHttpOpt([
// Set the http proxy
'proxy' => 'http://222.141.11.17:8118',
// Set the timeout time in seconds
'timeout' => 30,
])->page(1);
print_r($data->all());