-
- function encryptdecrypt($key, $string, $decrypt){
- if($decrypt){
- $dec ($key), base64_decode($string), mcrypt_mode_cbc, md5(md5($key))), "12");
- return $decrypted;
- }else{
- $encrypypted = ppt_encode(ry) (mcrypt_rijndael_256, md5($key), $string, mcrypt_mode_cbc, md5(md5($key))));
- return $encrypted;
- }
- }
-
🎜>複製程式碼
使用方法:
//以下是將字串「helloweba歡迎您」分別加密解密- //加密:
- echo encryptdecrypt('passpassword' , 'helloweba歡迎您',0);
- //解密:
- echo encryptdecrypt('password', 'z0jax4qmwcf db5tnbp/xwdum84snrsxvvpxuaca4bk=',1);
-
-
2、php產生隨機字串
當需要產生一個隨機名字,臨時密碼等字串時,使用以下函數:
function generaterandomstring($length = 10) { $characters = '0123456789abcdefghijgklwstnvd ''; for ($i = 0; $i $randomstring .= $characters[rand(0, strlen($characters) - 1)]; }
return $randomstring ;
}
複製程式碼
使用方法:
echo generaterandomstring(20);
複製程式碼 取得檔案副檔名(後綴)
快速取得檔案的副檔名即後綴。
-
-
-
- function getextension($filename){
- $myext = substr($filename, strrpos($filename, '.'));
return str_replace('.','',$myext); }
複製程式碼
使用方法:
echo getextension($filename);
複製程式碼 4、php取得檔案大小並格式化
取得檔案的大小,並且轉換成方便閱讀的kb,mb等格式。
-
-
-
- function formatsize($size) {
- $sizes = array(" bytes", " kb", " mb", " gb", " tb", " pb", " eb", " zb", " yb");
- if ($size == 0) {
- return('n/a');
- } else {
- return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]);
} }
複製程式碼
使用方法:
-
-
-
$thefile = filesize('test_file.mp3'); echo formatsize($thefile); 複製🎜>複製🎜>代碼
5、php替換標籤字元
將字串、模板標籤替換成指定的內容,函數:
-
-
- function stringparser($string,$replacer){
- $result = str_replace(array_keys($replacer), array_value );
- return $result;
}
複製程式碼
使用方法:
-
-
-
$string = 'the {b}anchor text{/b} is the {b}actual word{/b} or words used {br}to describe the link {br}itself';
- $replace_array = array('{b}' => '','{/b}' => '' ,'{br}' => '
');
echo stringparser($string,$replace_array);
複製程式碼
6、php列出目錄下的檔案名
列出目錄下的所有檔案:
-
-
- function listdirfiles($dirpath){
- if($dir = opendir($dirpathpath)){
- while($dir = opendir($dirpathpath)){
- while($ ($dir))!== false){
- if(!is_dir($dirpath.$file))
- {
- echo "filename: $file
";
- }
- }
- }
}
複製程式碼使用方法:
listdirfiles('home/some_folder/');
7、php取得目前頁面url
以下函數可以取得目前頁面的url,不管是http還是https。
-
- function curpageurl() {
- $pageurl = 'http';
- if (!empty($_server['https'])) {$pageurl .= "s";}
- $pageurl .= "://";
- if ($_server["server_port"] != "80") {
- $pageurl .= $ _server["server_name"].":".$_server["server_port"].$_server["request_uri"];
- } else {
- $pageurl .= $_server["server_name"].$_server ["request_uri"];
- }
- return $pageurl;
- }
-
複製程式碼
使用方法:
複製程式碼
複製程式碼
- 8,強迫下載檔案
-
不想讓瀏覽器直接開啟文件,例如pdf文件,而是要直接下載文件,那麼以下函數可以強制下載文件,函數中使用了application/octet-stream頭類型。
-
-
-
-
-
- function download($filename){
- if ((isset($filename))&&(file_exists($filename))){
- header("content-length: ".filesize($filename));
- header('content-type: application/octet-stream');
- header('content-disposition: attachment; filename="' . $filename . '"');
readfile("$filename"); } else { echo "looks like file does not exist!"; } }}
download('/down/test_45f73e852.zip');
複製程式碼 9、php截取字串長度-
需要截取字串(含中文漢字)長度的情況,例如標題顯示不能超過多少字符,超出的長度用…表示,以下函數可以滿足你的需求。
-
-
-
-
-
-
/*
- utf-8、gb2312都支援的漢字截取函數
- cut_str(str(str. , 開始長度, 編碼);
- 編碼預設為utf-8
- 開始長度預設為0
- */
- function cutstr($string, $sublen, $start = 0, $code = ' utf-8'){
- if($code == 'utf-8'){
- $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]/";
- preg_match_all($pa, $string, $t_string);
if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."...";
- return join('', array_slice($t_string[0 ], $start, $sublen));
- }else{
- $start = $start*2;
- $sublen = $sublen*2;
- $strlen = strlen($string);
- $tmpstr = '';
for($i=0; $i if($i>=$start && $i if(ord(substr($string, $i, 1))>129){
- $tmpstr.= substr($string, $i, 2);
- }else{
- $tmpstr.= substr($string, $i, 1);
- }
- }
- if(ord(substr($string, $i, 1))> 129) $i ;
- }
- if(strlen($tmpstr) return $tmpstr;
} }
複製程式碼
$str = "jquery外掛程式實作的載入圖片與頁面效果"; echo cutstr($str,16);複製程式碼10、php取得客戶端真實ip
常常要用資料庫記錄使用者的ip,取得客戶端真實的ip:
-
- //取得使用者真實ip
- function getip() {
- if (getenv("http_client_ip") && strcasec(getenv( "), "unknown"))
- $ip = getenv("http_client_ip");
- else
- if (getenv("http_x_forwarded_for") && strcasecmp(getenv("http_x_forwardnforfor") )
- $ip = getenv("http_x_forwarded_for");
- else
- if (getenv("remote_addr") && strcasecmp(getenv("remote_addr"), "unknown") else
- if (isset ($_server['remote_addr']) && $_server['remote_addr'] && strcasecmp($_server['remote_addr'], "unknnow")
- $ip = $_server['remote_addr'];
- else
- $ip = "unknown";
- return ($ip);
- }
-
-
複製程式碼
使用方法:
複製程式碼
11、 sql注入
在查詢資料庫時,出於安全考慮,需要過濾一些非法字元以防止sql惡意注入,請看一下函數:
-
-
-
-
- function injcheck($sql_str) {
- $check = preg_match('/select|insert|update|delete|'|/*|*| ../|./|union|into|load_file|outfile/', $sql_str);
- if ($check) {
- echo '非法字元! ! ';
- exit;
- } else {
- return $sql_str;
} }
複製程式碼
複製程式碼-
-
-
- 複製碼>使用方法如下:
-
-
-
-
-
- function message($msgtitle,$message,$jumpurl){
- $str = '';
- $str🎜> $str .= '';
- $str .= '';
- $str .= '';
- $str .= '頁提示';
- $str .= '';
- $str .= '';
- $str .= '';
- $str .= '
'; - $str .= '
'.$msgtitle.'';
- $ str .= '
'; - $str .= '
'.$message.'';
- $str .= '
系統將在3 秒後自動跳轉,如果不想等待,直接點擊這裡 跳轉 '; $str .= "<script>settimeout('location.replace('".$jumpurl."')',2000)</script>";
$str .= ' div>'; $str .= '
'; $str .= '';
$str .= ''; echo $str; }
- 複製程式碼
-
-
- 使用方法:
-
-
-
-
-
- function changetimetype($seconds) {
- if ($seconds > 3600) {
- $hours = intval($600);
$minutes = $seconds % 3600; $time = $hours . ":" . gmstrftime('%m:%s', $minutes); } else { $time = gmstrftime('%h:%m:%s', $seconds); } return $time; }
|