程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 7個超級實用的PHP代碼片段分享(1)

7個超級實用的PHP代碼片段分享(1)

編輯:關於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

1

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved