3

我有一个免费脚本,我想问一下是否可以替换或自动化搜索功能。例如每小时。现在我必须按下搜索按钮来查找新的代理,但我想自动搜索并在我的数据库中更新它们,也许使用 cron 作业。

if(isset($_POST['search'])) {   // hit search button
    $script_start = $pb->microtime_float();

    ob_flush();
    flush();

    $proxylisttype = $pb->returnProxyList($_REQUEST['listtype']);  // make sure request vars are clean
    $sitestoscour  = $pb->returnSitesScour($_REQUEST);             // make sure request vars are clean
    $finallist     = $pb->returnFinalList($sitestoscour);
    $finallist     = $pb->arrayUnique($finallist);                 // eliminate the dupes before moving on
    if(AUTO_BAN == 1) {                                            // remove banned proxies
        $finallist = $pb->autoBan($finallist);
    }
    $script_end    = $pb->microtime_float();                       // stop the timer
}
4

1 回答 1

3

您可以使用 php 脚本或命令行(或 wget)中的 curl 来执行此操作。这样你就可以设置 $_POST:

$ch = curl_init();

curl_setopt($ch,CURLOPT_URL, "http://yoururl.com'");
curl_setopt($ch,CURLOPT_POST, true);
curl_setopt($ch,CURLOPT_POSTFIELDS, "search=your_query");

$result = curl_exec($ch);

curl_close($ch);

然后通过设置 cron 作业使该脚本每​​小时运行一次。

你也可以用 wget 来做:

wget --post-date="search=query" http://yoururl.com
于 2012-10-11T14:36:30.700 回答