我想使用http://www.andreyvoev.com/programming/simple-serp-tracker-php-class/中的代码为serp跟踪器创建脚本。 Coud有人帮我这个代码。脚本在localhost上功能abd给我位置,但不在服务器中。服务器只给我emtpy array()。哪里可能有问题?
感谢您的帮助。
答案 0 :(得分:0)
只需从关键字中删除空格,您也可以使用urlencode
答案 1 :(得分:0)
使两个页面的名称为第一个index.php,第二个为tracker.php,并将tracker.php包含在index.php中并删除空格。
<?php
include_once "tracker.php"; //add this line
$test = new GoogleTracker(array('git'), 'www.kernel.org', 50);
//$test->use_proxy('proxy.txt');
$test->run();
print_r($test->get_results());
echo "================<br>";
print_r($test->get_debug_info());
?>