7个超级实用的PHP代码片段分享

1、超级简单的页面缓存

成都网站制作、成都网站设计介绍好的网站是理念、设计和技术的结合。创新互联拥有的网站设计理念、多方位的设计风格、经验丰富的设计团队。提供PC端+手机端网站建设,用营销思维进行网站设计、采用先进技术开源代码、注重用户体验与SEO基础,将技术与创意整合到网站之中,以契合客户的方式做到创意性的视觉化效果。

如果你的工程项目不是基于 CMS 系统或框架,打造一个简单的缓存系统将会非常实在。下面的代码很简单,但是对小网站而言能切切实实解决问题。

 
 
 
  1.     // define the path and name of cached file  
  2.     $cachefile = 'cached-files/'.date('M-d-Y').'.php';  
  3.     // define how long we want to keep the file in seconds. I set mine to 5 hours.  
  4.     $cachetime = 18000;  
  5.     // Check if the cached file is still fresh. If it is, serve it up and exit.  
  6.     if (file_exists($cachefile) && time() - $cachetime < filemtime($cachefile)) {  
  7.     include($cachefile);  
  8.         exit;  
  9.     }  
  10.     // if there is either no file OR the file to too old, render the page and capture the HTML.  
  11.     ob_start();  
  12. ?>  
  13.       
  14.         output all your html here.  
  15.       
  16.     // We're done! Save the cached content to a file  
  17.     $fp = fopen($cachefile, 'w');  
  18.     fwrite($fp, ob_get_contents());  
  19.     fclose($fp);  
  20.     // finally send browser output  
  21.     ob_end_flush();  
  22. ?> 

点击这里查看详细情况:http://wesbos.com/simple-php-page-caching-technique/

2、在 PHP 中计算距离

这是一个非常有用的距离计算函数,利用纬度和经度计算从 A 地点到 B 地点的距离。该函数可以返回英里,公里,海里三种单位类型的距离。

 
 
 
  1. function distance($lat1, $lon1, $lat2, $lon2, $unit) {   
  2.  
  3.   $theta = $lon1 - $lon2;  
  4.   $dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) +  cos(deg2rad($lat1)) * cos(deg2rad($lat2)) * cos(deg2rad($theta));  
  5.   $dist = acos($dist);  
  6.   $dist = rad2deg($dist);  
  7.   $miles = $dist * 60 * 1.1515;  
  8.   $unit = strtoupper($unit);  
  9.  
  10.   if ($unit == "K") {  
  11.     return ($miles * 1.609344);  
  12.   } else if ($unit == "N") {  
  13.       return ($miles * 0.8684);  
  14.     } else {  
  15.         return $miles;  
  16.       }  

使用方法:

 
 
 
  1. echo distance(32.9697, -96.80322, 29.46786, -98.53506, "k")." kilometers"; 

点击这里查看详细情况:http://www.phpsnippets.info/calculate-distances-in-php

3、将秒数转换为时间(年、月、日、小时…)

这个有用的函数能将秒数表示的事件转换为年、月、日、小时等时间格式。

 
 
 
  1. function Sec2Time($time){  
  2.   if(is_numeric($time)){  
  3.     $value = array(  
  4.       "years" => 0, "days" => 0, "hours" => 0,  
  5.       "minutes" => 0, "seconds" => 0,  
  6.     );  
  7.     if($time >= 31556926){  
  8.       $value["years"] = floor($time/31556926);  
  9.       $time = ($time%31556926);  
  10.     }  
  11.     if($time >= 86400){  
  12.       $value["days"] = floor($time/86400);  
  13.       $time = ($time%86400);  
  14.     }  
  15.     if($time >= 3600){  
  16.       $value["hours"] = floor($time/3600);  
  17.       $time = ($time%3600);  
  18.     }  
  19.     if($time >= 60){  
  20.       $value["minutes"] = floor($time/60);  
  21.       $time = ($time%60);  
  22.     }  
  23.     $value["seconds"] = floor($time);  
  24.     return (array) $value;  
  25.   }else{  
  26.     return (bool) FALSE;  
  27.   }  

点击这里查看详细情况:http://ckorp.net/sec2time.php

#p#

4、强制下载文件

一些诸如 mp3 类型的文件,通常会在客户端浏览器中直接被播放或使用。如果你希望它们强制被下载,也没问题。可以使用以下代码:

 
 
 
  1. function downloadFile($file){  
  2.         $file_name = $file;  
  3.         $mime = 'application/force-download';  
  4.     header('Pragma: public');     // required  
  5.     header('Expires: 0');        // no cache  
  6.     header('Cache-Control: must-revalidate, post-check=0, pre-check=0');  
  7.     header('Cache-Control: private',false);  
  8.     header('Content-Type: '.$mime);  
  9.     header('Content-Disposition: attachment; filename="'.basename($file_name).'"');  
  10.     header('Content-Transfer-Encoding: binary');  
  11.     header('Connection: close');  
  12.     readfile($file_name);        // push it out  
  13.     exit();  

点击这里查看详细情况:http://www.tecnocrazia.com/

5、使用 Google API 获取当前天气信息

想知道今天的天气?这段代码会告诉你,只需 3 行代码。你只需要把其中的 ADDRESS 换成你期望的城市。

 
 
 
  1. $xml = simplexml_load_file('http://www.google.com/ig/api?weather=ADDRESS');  
  2.   $information = $xml->xpath("/xml_api_reply/weather/current_conditions/condition");  
  3.   echo $information[0]->attributes(); 

点击这里查看详细情况:http://ortanotes.tumblr.com/post/200469319/current-weather-in-3-lines-of-php

6、获得某个地址的经纬度

随着 Google Maps API 的普及,开发人员常常需要获得某一特定地点的经度和纬度。这个非常有用的函数以某一地址作为参数,返回一个数组,包含经度和纬度数据。

 
 
 
  1. function getLatLong($address){  
  2.     if (!is_string($address))die("All Addresses must be passed as a string");  
  3.     $_url = sprintf('http://maps.google.com/maps?output=js&q=%s',rawurlencode($address));  
  4.     $_result = false;  
  5.     if($_result = file_get_contents($_url)) {  
  6.         if(strpos($_result,'errortips') > 1 || strpos($_result,'Did you mean:') !== false) return false;  
  7.         preg_match('!center:\s*{lat:\s*(-?\d+\.\d+),lng:\s*(-?\d+\.\d+)}!U', $_result, $_match);  
  8.         $_coords['lat'] = $_match[1];  
  9.         $_coords['long'] = $_match[2];  
  10.     }  
  11.     return $_coords;  

点击这里查看详细情况:http://snipplr.com/view.php?codeview&id=47806

7、使用 PHP 和 Google 获取域名的 favicon 图标

有些网站或 Web 应用程序需要使用来自其他网站的 favicon 图标。利用 Google 和 PHP 很容易就能搞定,不过前提是 Google 不会连接被重置哦!

 
 
 
  1. function get_favicon($url){  
  2. $url = str_replace("http://",'',$url);  
  3. return "http://www.google.com/s2/favicons?domain=".$url;  
  4. }  
  5.  

点击这里查看详细情况:http://snipplr.com/view.php?codeview&id=45928

原文:http://www.mangguo.org/7-super-useful-php-snippets/

【编辑推荐】

  1. PHP 7展望:PHP需要改变什么
  2. 是什么让我的PHP退役了
  3. 新里程碑到来 开启PHP框架的新时代
  4. 中国应用开源脚本语言PHP的水平如何?
  5. 为什么说PHP是个集中营

当前名称:7个超级实用的PHP代码片段分享
文章URL:http://www.gawzjz.com/qtweb2/news19/16619.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联