找回密码
 立即注册

QQ登录

只需一步,快速开始

查看: 1947|回复: 1

[教程] 7个超级实用的PHP代码片段分享

[复制链接]
发表于 2013-4-9 12:57:21 | 显示全部楼层 |阅读模式 来自 广东省湛江市
  1. 1、超级简单的页面缓存
  2.              如果你的工程项目不是基于 CMS 系统或框架,打造一个简单的缓存系统将会非常实在。下面的代码很简单,但是对小网站而言能切切实实解决问题。
  3.            <?php
  4.             // define the path and name of cached file
  5.             $cachefile = 'cached-files/'.date('M-d-Y').'.php';
  6.             // define how long we want to keep the file in seconds. I set mine to 5 hours.
  7.             $cachetime = 18000;
  8.             // Check if the cached file is still fresh. If it is, serve it up and exit.
  9.             if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {
  10.             include($cachefile);
  11.                 exit;
  12.             }
  13.             // if there is either no file OR the file to too old, render the page and capture the HTML.
  14.             ob_start();
  15.         ?>
  16.             <html>
  17.                 output all your html here.
  18.             </html>
  19.         <?php
  20.             // We're done! Save the cached content to a file
  21.             $fp = fopen($cachefile, 'w');
  22.             fwrite($fp, ob_get_contents());
  23.             fclose($fp);
  24.             // finally send browser output
  25.             ob_end_flush();
  26.         ?>
  27.            
  28.              点击这里查看详细情况:http://wesbos.com/simple-php-page-caching-technique/
  29.              2、在 PHP 中计算距离
  30.              这是一个非常有用的距离计算函数,利用纬度和经度计算从 A 地点到 B 地点的距离。该函数可以返回英里,公里,海里三种单位类型的距离。
  31.            function distance($lat1, $lon1, $lat2, $lon2, $unit) {  
  32.          
  33.            $theta = $lon1 - $lon2;
  34.           $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) +  cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));
  35.           $dist = acos($dist);
  36.           $dist = rad2deg($dist);
  37.           $miles = $dist * 60 * 1.1515;
  38.           $unit = strtoupper($unit);
  39.          
  40.            if ($unit == 'K') {
  41.             return ($miles * 1.609344);
  42.           } else if ($unit == 'N') {
  43.               return ($miles * 0.8684);
  44.             } else {
  45.                 return $miles;
  46.               }
  47.         }
  48.            
  49.              使用方法:echo distance(32.9697, -96.80322, 29.46786, -98.53506, 'k').' kilometers';
  50.             
  51.              3、将秒数转换为时间(年、月、日、小时…)
  52.              这个有用的函数能将秒数表示的事件转换为年、月、日、小时等时间格式。
  53.            function Sec2Time($time){
  54.           if(is_numeric($time)){
  55.             $value = array(
  56.               'years' => 0, 'days' => 0, 'hours' => 0,
  57.               'minutes' => 0, 'seconds' => 0,
  58.             );
  59.             if($time >= 31556926){
  60.               $value['years'] = floor($time/31556926);
  61.               $time = ($time%31556926);
  62.             }
  63.             if($time >= 86400){
  64.               $value['days'] = floor($time/86400);
  65.               $time = ($time%86400);
  66.             }
  67.             if($time >= 3600){
  68.               $value['hours'] = floor($time/3600);
  69.               $time = ($time%3600);
  70.             }
  71.             if($time >= 60){
  72.               $value['minutes'] = floor($time/60);
  73.               $time = ($time%60);
  74.             }
  75.             $value['seconds'] = floor($time);
  76.             return (array) $value;
  77.           }else{
  78.             return (bool) FALSE;
  79.           }
  80.         }
  81.            
  82.              4、强制下载文件
  83.              一些诸如 mp3 类型的文件,通常会在客户端浏览器中直接被播放或使用。如果你希望它们强制被下载,也没问题。可以使用以下代码:
  84.            function downloadFile($file){
  85.             $file_name = $file;
  86.             $mime = 'application/force-download';
  87.             header('Pragma: public');     // required
  88.             header('Expires: 0');        // no cache
  89.             header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
  90.             header('Cache-Control: private',false);
  91.             header('Content-Type: '.$mime);
  92.             header('Content-Disposition: attachment; filename=''.basename($file_name).''');
  93.             header('Content-Transfer-Encoding: binary');
  94.             header('Connection: close');
  95.             readfile($file_name);        // push it out
  96.             exit();
  97.         }
  98.            
  99.              5、使用 Google API 获取当前天气信息
  100.              想知道今天的天气?这段代码会告诉你,只需 3 行代码。你只需要把其中的 ADDRESS 换成你期望的城市。
  101.            $xml = simplexml_load_file('http://www.google.com/ig/api?weather=ADDRESS');
  102.           $information = $xml->xpath('/xml_api_reply/weather/current_conditions/condition');
  103.           echo $information[0]->attributes();
  104.            
  105.              6、获得某个地址的经纬度
  106.              随着 Google Maps API 的普及,开发人员常常需要获得某一特定地点的经度和纬度。这个非常有用的函数以某一地址作为参数,返回一个数组,包含经度和纬度数据。
  107.            function getLatLong($address){
  108.             if (!is_string($address))die('All Addresses must be passed as a string');
  109.             $_url = sprintf('http://maps.google.com/maps?output=js&q=%s',rawurlencode($address));
  110.             $_result = false;
  111.             if($_result = file_get_contents($_url)) {
  112.                 if(strpos($_result,'errortips') > 1 || strpos($_result,'Did you mean:') !== false) return false;
  113.                 preg_match('!center:s*{lat:s*(-?d+.d+),lng:s*(-?d+.d+)}!U', $_result, $_match);
  114.                 $_coords['lat'] = $_match[1];
  115.                 $_coords['long'] = $_match[2];
  116.             }
  117.             return $_coords;
  118.         }
  119.            
  120.              7、使用 PHP 和 Google 获取域名的 favicon 图标
  121.              有些网站或 Web 应用程序需要使用来自其他网站的 favicon 图标。利用 Google 和 PHP 很容易就能搞定,不过前提是 Google 不会连接被重置哦!
  122.            function get_favicon($url){
  123.         $url = str_replace('http://','',$url);
  124.         return 'http://www.google.com/s2/favicons?domain='.$url;
  125.         }  
复制代码

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

发表于 2013-4-9 15:35:15 | 显示全部楼层 来自 北京市
楼主好聪明,这样就可以避免一次只是加载一块了

评分

参与人数 1金币 +5 收起 理由
抢楼评分专号 + 5 很幸运,你获得了抢楼奖励!

查看全部评分

发帖求助前要善用【论坛搜索】功能,那里可能会有你要找的答案;

如何回报帮助你解决问题的坛友,好办法就是点击帖子下方的评分按钮给对方加【金币】不会扣除自己的积分,做一个热心并受欢迎的人!

回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则 需要先绑定手机号

关闭

站长推荐上一条 /1 下一条

QQ|侵权投诉|广告报价|手机版|小黑屋|西部数码代理|飘仙建站论坛 ( 豫ICP备2022021143号-1 )

GMT+8, 2024-5-6 09:24 , Processed in 0.047919 second(s), 12 queries , Redis On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表