php站点没什么访问量,可是负载又出奇的高,反馈给程序员通常就一个结果,代码没有问题,检查一下服务器是否是正常的,有些人就不停的处在扯皮时期了,何不查查问题. 好吧,我这有一例,即是file_get_contents远程url引发的.好,进入正题. php
以下是curl和file_get_contents链接淘宝ip地址库的接口. html
文件:1829.php 程序员
<?php /** * 经过淘宝IP接口获取IP地理位置 * @param string $ip * @return: string **/ function getCityCurl($ip) { $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip; $ch = curl_init(); $timeout = 5; curl_setopt ($ch, CURLOPT_URL, $url); curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); $file_contents = curl_exec($ch); curl_close($ch); $ipinfo=json_decode($file_contents); if($ipinfo->code=='1'){ return false; } $city = $ipinfo->data->region.$ipinfo->data->city; return $city; } function getCity($ip) { $url="http://ip.taobao.com/service/getIpInfo.php?ip=".$ip; $ipinfo=json_decode(file_get_contents($url)); if($ipinfo->code=='1'){ return false; } $city = $ipinfo->data->region.$ipinfo->data->city; return $city; } // for file_get_contents $startTime=explode(' ',microtime()); $startTime=$startTime[0] + $startTime[1]; for($i=1;$i<=10;$i++) { echo getCity("121.207.247.202")."</br>"; } $endTime = explode(' ',microtime()); $endTime = $endTime[0] + $endTime[1]; $totalTime = $endTime - $startTime; echo 'file_get_contents:'.number_format($totalTime, 10, '.', "")." seconds</br>"; //for curl $startTime2=explode(' ',microtime()); $startTime2=$startTime2[0] + $startTime2[1]; for($i=1;$i<=10;$i++) { echo getCityCurl('121.207.247.202')."</br>"; } $endTime2 = explode(' ',microtime()); $endTime2=$endTime2[0] + $endTime2[1]; $totalTime2 = $endTime2 - $startTime2; echo "curl:".number_format($totalTime2, 10, '.', "")." seconds"; ?>
访问http://test.ttlsa.com/html/1829.php,结果以下图: json
curl比file_get_contents速度快了30%左右,不过最重要的是服务器负载更低. api
为了防止这一问题,我直接把file_get_contents远程url功能,禁用是最靠谱得选择,口头告知程序员,没效率. 服务器
allow_url_fopen = On 改成 allow_url_fopen = Off
使用curl替换file_get_contents
curl
file_get_contents用来读文件就行,不要用它来获取远程url得信息,走api之类得绝对不要考虑它,强烈建议系统管理员禁用url_open. 速度方面curl已经占优,性能上你们本身测试一下就会下决心之后再也不使用这么粗劣得函数了. 函数
我的博客:http://www.ttlsa.com/html/1829.html
osc博客:http://my.oschina.net/766/blog/157580 性能