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

开发 后端 前端
关键的时候能拿得出关键代码才是好的程序员。这篇文章里收集了一些诸如此类的关键代码,有用于编程。

1、超级简单的页面缓存

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

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

点击这里查看详细情况: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是个集中营
责任编辑:陈贻新 来源: 芒果小站
相关推荐

2011-07-07 10:35:53

htaccess

2015-10-08 08:53:46

PHP代码片段

2012-01-17 13:54:02

PHP

2020-11-16 16:04:42

CSS设计代码

2015-11-02 09:25:07

jQuery代码片段

2021-10-31 07:36:17

前端JavaScript编程

2011-07-11 10:16:07

JavaScript

2023-06-16 16:34:25

JavaScripWeb 开发

2024-01-04 16:46:58

JavaScript开发

2023-11-03 16:02:00

JavaScript开发

2021-09-17 15:31:47

代码JavaScript数组

2011-08-11 10:38:50

windows7技巧Windows7技巧

2018-05-10 15:35:03

前端代码图像

2012-11-27 10:23:18

CSSWeb开发

2019-10-10 16:49:18

Python镜音双子脚本语言

2022-06-08 08:55:15

JavaScript代码前端

2023-12-19 13:31:00

CSS前端技巧

2011-09-06 15:16:42

PHP

2024-02-26 08:20:00

CSS开发

2015-08-19 09:15:11

C#程序员实用代码
点赞
收藏

51CTO技术栈公众号