我使用外部资源来获取用户到我的网站的位置,以便我可以针对该位置自定义网站,但是我使用的外部资源有时可能非常慢,因此会减慢我的网站速度,我使用cURL
和获取外部数据我已经实现了一个超时功能curl_setopt($ch,CURLOPT_TIMEOUT,1000);
,但是一旦超时进入页面停止加载并且一半页面丢失。
这是在我的网站上使用的脚本
$i = 1;
$geoplugin = new geoPlugin();
$geoplugin->locate();
if(empty($_SESSION['country'])) {
$conchk = $geoplugin->countryName;
$_SESSION['country'] = $conchk;
}
else { $conchk = $_SESSION['country']; }
if(empty($conchk)) {$countrygeo = "NULL_CONT";} else {$countrygeo = $conchk;}
//$countrygeo = "Spain";
$country_find = mysql_query("SELECT * FROM country_list
WHERE country='$countrygeo' LIMIT 1");
while($row_cou = mysql_fetch_array($country_find)) {
$rowcov = $row_cou[1];
//Geo-location default!
print "<option selected value=\"$rowcov\">$rowcov</option>\n";
$kvar = 1;
}
//finish first while loop!
//if we cant find the geo-country in the list print the whole table!
$country_full_list_print = mysql_query("SELECT * FROM country_list
ORDER BY country ASC");
while($row_full = mysql_fetch_array($country_full_list_print)) {
if( ($row_full[1] == "United Kingdom") && ($i == 1) && (empty($kvar)) ) {
print "<option selected value=\"$row_full[1]\">$row_full[1]</option>\n"; $i++; }
//always print uk as default if no results.
elseif ($row_full[1] == $rowcov) { }
else {
print "<option value=\"$row_full[1]\">$row_full[1]</option>\n"; } //this is the default print!
} //close while loop and if num_rows less than 1.
如果有人有任何想法如何停止 $geoplugin 但继续加载页面,将不胜感激。