程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 超實用PHP函數總結整理,實用php函數總結

超實用PHP函數總結整理,實用php函數總結

編輯:關於PHP編程

超實用PHP函數總結整理,實用php函數總結


1、PHP加密解密

PHP加密和解密函數可以用來加密一些有用的字符串存放在數據庫裡,並且通過可逆解密字符串,該函數使用了base64和MD5加密和解密。

 1 function encryptDecrypt($key, $string, $decrypt){ 
 2 
 3     if($decrypt){ 
 4 
 5         $decrypted = rtrim(mcrypt_decrypt(MCRYPT_RIJNDAEL_256, md5($key), base64_decode
 6        ($string), MCRYPT_MODE_CBC, md5(md5($key))), "12"); 
 7 
 8         return $decrypted; 
 9 
10     }else{ 
11 
12         $encrypted = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, md5($key),
13        $string, MCRYPT_MODE_CBC, md5(md5($key)))); 
14 
15         return $encrypted; 
16 
17     } 
18 
19 }

使用方法如下:

1 //以下是將字符串“Helloweba歡迎您”分別加密和解密 
2 
3 //加密: 
4 
5 echo encryptDecrypt('password', 'Helloweba歡迎您',0); 
6 
7 //解密: 
8 
9 echo encryptDecrypt('password', 'z0JAx4qMwcF+db5TNbp/xwdUM84snRsXvvpXuaCa4Bk=',1);

2、PHP生成隨機字符串

       當我們需要生成一個隨機名字,臨時密碼等字符串時可以用到下面的函數:

 1 function generateRandomString($length = 10) { 
 2 
 3     $characters = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; 
 4 
 5     $randomString = ''; 
 6 
 7     for ($i = 0; $i < $length; $i++) { 
 8 
 9         $randomString .= $characters[rand(0, strlen($characters) - 1)]; 
10 
11     } 
12 
13     return $randomString; 
14 
15 }

  使用方法如下:

1 echo generateRandomString(20);

3、PHP獲取文件擴展名(後綴)

 以下函數可以快速獲取文件的擴展名即後綴。

1 function getExtension($filename){ 
2 
3   $myext = substr($filename, strrpos($filename, '.')); 
4 
5   return str_replace('.','',$myext); 
6 
7 }

使用方法如下:

1 $filename = '我的文檔.doc'; 
2 
3 echo getExtension($filename);

4、PHP獲取文件大小並格式化

以下使用的函數可以獲取文件的大小,並且轉換成便於閱讀的KB,MB等格式。

 1 function formatSize($size) { 
 2 
 3     $sizes = array(" Bytes", " KB", " MB", " GB", " TB", " PB", " EB", " ZB", " YB"); 
 4 
 5     if ($size == 0) {  
 6 
 7         return('n/a');  
 8 
 9     } else { 
10 
11       return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]);  
12 
13     } 
14 
15 }

使用方法如下:

1 $thefile = filesize('test_file.mp3'); 
2 
3 echo formatSize($thefile);

5、PHP替換標簽字符

有時我們需要將字符串、模板標簽替換成指定的內容,可以用到下面的函數:

 1 function stringParser($string,$replacer){ 
 2 
 3     $result = str_replace(array_keys($replacer), array_values($replacer),$string); 
 4 
 5     return $result; 
 6 
 7 }
 8 
 9 //使用方法如下
10 
11 $string = 'The {b}anchor text{/b} is the {b}actual word{/b} or words used 
12 {br}to describe the link {br}itself'; 
13 
14 $replace_array = array('{b}' => '<b>','{/b}' => '</b>','{br}' => '<br >'); 
15 
16  
17 
18 echo stringParser($string,$replace_array);</br >

6、PHP列出目錄下的文件名

如果你想列出目錄下的所有文件,使用以下代碼即可:

 1 function listDirFiles($DirPath){ 
 2 
 3     if($dir = opendir($DirPath)){ 
 4 
 5          while(($file = readdir($dir))!== false){ 
 6 
 7                 if(!is_dir($DirPath.$file)) 
 8 
 9                 { 
10 
11                     echo "filename: $file<br >"; 
12 
13                 } 
14 
15          } 
16 
17     } 
18 
19 }
20 
21 //使用方法如下
22 
23 listDirFiles('home/some_folder/');

7、PHP獲取當前頁面URL

以下函數可以獲取當前頁面的URL,不管是http還是https。

 1 function curPageURL() { 
 2 
 3     $pageURL = 'http'; 
 4 
 5     if (!empty($_SERVER['HTTPS'])) {$pageURL .= "s";} 
 6 
 7     $pageURL .= "://"; 
 8 
 9     if ($_SERVER["SERVER_PORT"] != "80") { 
10 
11         $pageURL .= $_SERVER["SERVER_NAME"].":".$_SERVER["SERVER_PORT"].$_SERVER
12 ["REQUEST_URI"]; 
13 
14     } else { 
15 
16         $pageURL .= $_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"]; 
17 
18     } 
19 
20     return $pageURL; 
21 
22 }
23 
24 //使用方法如下
25 
26 echo curPageURL();

8、PHP強制下載文件

有時我們不想讓浏覽器直接打開文件,如PDF文件,而是要直接下載文件,那麼以下函數可以強制下載文件,函數中使用了application/octet-stream頭類型。

 1 function download($filename){ 
 2 
 3     if ((isset($filename))&&(file_exists($filename))){ 
 4 
 5        header("Content-length: ".filesize($filename)); 
 6 
 7        header('Content-Type: application/octet-stream'); 
 8 
 9        header('Content-Disposition: attachment; filename="' . $filename . '"'); 
10 
11        readfile("$filename"); 
12 
13     } else { 
14 
15        echo "Looks like file does not exist!"; 
16 
17     } 
18 
19 }
20 
21 //使用方法如下
22 
23 download('/down/test_45f73e852.zip'); 

9、PHP截取字符串長度

我們經常會遇到需要截取字符串(含中文漢字)長度的情況,比如標題顯示不能超過多少字符,超出的長度用…表示,以下函數可以滿足你的需求。

 1 /* 
 2 
 3  Utf-8、gb2312都支持的漢字截取函數 
 4 
 5  cut_str(字符串, 截取長度, 開始長度, 編碼); 
 6 
 7  編碼默認為 utf-8 
 8 
 9  開始長度默認為 0 
10 
11 */ 
12 
13 function cutStr($string, $sublen, $start = 0, $code = 'UTF-8'){ 
14 
15     if($code == 'UTF-8'){ 
16 
17         $pa = "/[\x01-\x7f]|[\xc2-\xdf][\x80-\xbf]|\xe0[\xa0-\xbf][\x80-\xbf]|[\xe1-\xef][\x80-\xbf][\x80-\xbf]|\xf0[\x90-\xbf][\x80-\xbf][\x80-\xbf]|[\xf1-\xf7][\x80-\xbf][\x80-\xbf][\x80-\xbf]/"; 
18 
19         preg_match_all($pa, $string, $t_string); 
20 
21  
22 
23         if(count($t_string[0]) - $start > $sublen) return join('', array_slice
24 ($t_string[0], $start, $sublen))."..."; 
25 
26         return join('', array_slice($t_string[0], $start, $sublen)); 
27 
28     }else{ 
29 
30         $start = $start*2; 
31 
32         $sublen = $sublen*2; 
33 
34         $strlen = strlen($string); 
35 
36         $tmpstr = ''; 
37 
38  
39 
40         for($i=0; $i<$strlen; $i++){ 
41 
42             if($i>=$start && $i<($start+$sublen)){ 
43 
44                 if(ord(substr($string, $i, 1))>129){ 
45 
46                     $tmpstr.= substr($string, $i, 2); 
47 
48                 }else{ 
49 
50                     $tmpstr.= substr($string, $i, 1); 
51 
52                 } 
53 
54             } 
55 
56             if(ord(substr($string, $i, 1))>129) $i++; 
57 
58         } 
59 
60         if(strlen($tmpstr)<$strlen ) $tmpstr.= "..."; 
61 
62         return $tmpstr; 
63 
64     } 
65 
66 }
67 
68 //使用方法如下
69 
70 $str = "jQuery插件實現的加載圖片和頁面效果"; 
71 
72 echo cutStr($str,16);

10、PHP獲取客戶端真實IP

我們經常要用數據庫記錄用戶的IP,以下代碼可以獲取客戶端真實的IP:

 1 //獲取用戶真實IP 
 2 
 3 function getIp() { 
 4 
 5     if (getenv("HTTP_CLIENT_IP") && strcasecmp(getenv("HTTP_CLIENT_IP"),
 6  "unknown")) 
 7 
 8         $ip = getenv("HTTP_CLIENT_IP"); 
 9 
10     else 
11 
12         if (getenv("HTTP_X_FORWARDED_FOR") && strcasecmp(getenv("HTTP_X_FORWARDED_FOR"), "unknown")) 
13 
14             $ip = getenv("HTTP_X_FORWARDED_FOR"); 
15 
16         else 
17 
18             if (getenv("REMOTE_ADDR") && strcasecmp(getenv("REMOTE_ADDR"), "unknown")) 
19 
20                 $ip = getenv("REMOTE_ADDR"); 
21 
22             else 
23 
24                 if (isset ($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && 
25 strcasecmp($_SERVER['REMOTE_ADDR'], "unknown")) 
26 
27                     $ip = $_SERVER['REMOTE_ADDR']; 
28 
29                 else 
30 
31                     $ip = "unknown"; 
32 
33     return ($ip); 
34 
35 }
36 
37 //使用方法如下
38 
39 echo getIp();

11、PHP防止SQL注入

我們在查詢數據庫時,出於安全考慮,需要過濾一些非法字符防止SQL惡意注入,請看一下函數:

 1 function injCheck($sql_str) {  
 2 
 3     $check = preg_match('/select|insert|update|delete|\'|\/\*|\*|\.\.\/|\.\/|union|into
 4 |load_file|outfile/', $sql_str); 
 5 
 6     if ($check) { 
 7 
 8         echo '非法字符!!'; 
 9 
10         exit; 
11 
12     } else { 
13 
14         return $sql_str; 
15 
16     } 
17 
18 }
19 
20 //使用方法如下
21 
22 echo injCheck('1 or 1=1');

12、PHP頁面提示與跳轉

我們在進行表單操作時,有時為了友好需要提示用戶操作結果,並跳轉到相關頁面,請看以下函數:

 1 function message($msgTitle,$message,$jumpUrl){ 
 2     $str = '<!DOCTYPE HTML>'; 
 3     $str .= '<html>'; 
 4     $str .= '<head>'; 
 5     $str .= '<meta charset="utf-8">'; 
 6     $str .= '<title>頁面提示</title>'; 
 7     $str .= '<style type="text/css">'; 
 8     $str .= '*{margin:0; padding:0}a{color:#369; text-decoration:none;}a:hover{text-decoration:underline}body{height:100%; font:12px/18px Tahoma, Arial,  sans-serif; color:#424242; background:#fff}.message{width:450px; height:120px; 
 9 margin:16% auto; border:1px solid #99b1c4; background:#ecf7fb}.message h3{height:28px; 
10 line-height:28px; background:#2c91c6; text-align:center; color:#fff; font-size:14px}.msg_txt{padding:10px; margin-top:8px}.msg_txt h4{line-height:26px; font-size:14px}.msg_txt h4.red{color:#f30}.msg_txt p{line-height:22px}'; 
11     $str .= '</style>'; 
12     $str .= '</head>'; 
13     $str .= '<body>'; 
14     $str .= '<div>'; 
15     $str .= '<h3>'.$msgTitle.'</h3>'; 
16     $str .= '<div>'; 
17     $str .= '<h4>'.$message.'</h4>'; 
18     $str .= '<p>系統將在 <span>; 
19     $str .= "<script>setTimeout('location.replace(\'".$jumpUrl."\')',2000)</script>"; 
20     $str .= '</div>'; 
21     $str .= '</div>'; 
22     $str .= '</body>'; 
23     $str .= '</html>'; 
24     echo $str; 
25 }
26 
27 //使用方法如下 
28 
29 message('操作提示','操作成功!','http://www.helloweba.com/');

13、PHP計算時長

我們在處理時間時,需要計算當前時間距離某個時間點的時長,如計算客戶端運行時長,通常用hh:mm:ss表示。

 1 function changeTimeType($seconds) { 
 2 
 3     if ($seconds > 3600) { 
 4 
 5         $hours = intval($seconds / 3600); 
 6 
 7         $minutes = $seconds % 3600; 
 8 
 9         $time = $hours . ":" . gmstrftime('%M:%S', $minutes); 
10 
11     } else { 
12 
13         $time = gmstrftime('%H:%M:%S', $seconds); 
14 
15     } 
16 
17     return $time; 
18 
19 }
20 
21 //使用方法如下
22 
23 $seconds = 3712; 
24 
25 echo changeTimeType($seconds);

 

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