php函數(加密解密,隨機字串,截取字串長度,強制下載等)

WBOY
發布: 2016-07-25 08:51:33
原創
1218 人瀏覽過
  1. function encryptdecrypt($key, $string, $decrypt){
  2. if($decrypt){
  3. $dec ($key), base64_decode($string), mcrypt_mode_cbc, md5(md5($key))), "12");
  4. return $decrypted;
  5. }else{
  6. $encrypypted = ppt_encode(ry) (mcrypt_rijndael_256, md5($key), $string, mcrypt_mode_cbc, md5(md5($key))));
  7. return $encrypted;
  8. }
  9. }
🎜>複製程式碼
使用方法:

    //以下是將字串「helloweba歡迎您」分別加密解密
  1. //加密:
  2. echo encryptdecrypt('passpassword' , 'helloweba歡迎您',0);
  3. //解密:
  4. 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);

    複製程式碼
    複製程式碼
    複製程式碼

    取得檔案副檔名(後綴)
    快速取得檔案的副檔名即後綴。
    1. function getextension($filename){
    2. $myext = substr($filename, strrpos($filename, '.'));
    return str_replace('.','',$myext);
    }
    複製程式碼

    使用方法:
    $filename = '我的文件.doc';
    echo getextension($filename);
    複製程式碼

    4、php取得檔案大小並格式化
    取得檔案的大小,並且轉換成方便閱讀的kb,mb等格式。
    1. function formatsize($size) {
    2. $sizes = array(" bytes", " kb", " mb", " gb", " tb", " pb", " eb", " zb", " yb");
    3. if ($size == 0) {
    4. return('n/a');
    5. } else {
    6. return (round($size/pow(1024, ($i = floor(log($size, 1024)))), 2) . $sizes[$i]);
    }
    }
    複製程式碼

    使用方法:
    $thefile = filesize('test_file.mp3');
    echo formatsize($thefile);複製🎜>複製🎜>代碼

    5、php替換標籤字元

    將字串、模板標籤替換成指定的內容,函數:
    1. function stringparser($string,$replacer){
    2. $result = str_replace(array_keys($replacer), array_value );
    3. return $result;
    }
    複製程式碼

    使用方法:
    1. $string = 'the {b}anchor text{/b} is the {b}actual word{/b} or words used {br}to describe the link {br}itself';

    2. $replace_array = array('{b}' => '','{/b}' => '' ,'{br}' => '
      ');
    3. echo stringparser($string,$replace_array);

    複製程式碼

    6、php列出目錄下的檔案名

    列出目錄下的所有檔案:
    1. function listdirfiles($dirpath){
    2. if($dir = opendir($dirpathpath)){
    3. while($dir = opendir($dirpathpath)){
    4. while($ ($dir))!== false){
    5. if(!is_dir($dirpath.$file))
    6. {
    7. echo "filename: $file
      ";
    8. }
    9. }
    10. }
    }
    複製程式碼

    使用方法: listdirfiles('home/some_folder/');

    7、php取得目前頁面url 以下函數可以取得目前頁面的url,不管是http還是https。

    1. function curpageurl() {
    2. $pageurl = 'http';
    3. if (!empty($_server['https'])) {$pageurl .= "s";}
    4. $pageurl .= "://";
    5. if ($_server["server_port"] != "80") {
    6. $pageurl .= $ _server["server_name"].":".$_server["server_port"].$_server["request_uri"];
    7. } else {
    8. $pageurl .= $_server["server_name"].$_server ["request_uri"];
    9. }
    10. return $pageurl;
    11. }
    複製程式碼

    使用方法:

    1. echo curpageurl();
    複製程式碼

    複製程式碼

    複製程式碼
    1. 8,強迫下載檔案
    2. 不想讓瀏覽器直接開啟文件,例如pdf文件,而是要直接下載文件,那麼以下函數可以強制下載文件,函數中使用了application/octet-stream頭類型。
    3. function download($filename){
    4. if ((isset($filename))&&(file_exists($filename))){
    5. header("content-length: ".filesize($filename));
    6. header('content-type: application/octet-stream');
    7. header('content-disposition: attachment; filename="' . $filename . '"');
    readfile("$filename");
    } else { echo "looks like file does not exist!"; }
    }

    }

      複製程式碼
    使用方法:

    download('/down/test_45f73e852.zip');

    複製程式碼
      9、php截取字串長度
    1. 需要截取字串(含中文漢字)長度的情況,例如標題顯示不能超過多少字符,超出的長度用…表示,以下函數可以滿足你的需求。
    2. /*

    3. utf-8、gb2312都支援的漢字截取函數
    4. cut_str(str(str. , 開始長度, 編碼);
    5. 編碼預設為utf-8
    6. 開始長度預設為0
    7. */
    8. function cutstr($string, $sublen, $start = 0, $code = ' utf-8'){
    9. if($code == 'utf-8'){
    10. $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]/";
    11. preg_match_all($pa, $string, $t_string);
    12. if(count($t_string[0]) - $start > $sublen) return join('', array_slice($t_string[0], $start, $sublen))."...";

    13. return join('', array_slice($t_string[0 ], $start, $sublen));
    14. }else{
    15. $start = $start*2;
    16. $sublen = $sublen*2;
    17. $strlen = strlen($string);
    18. $tmpstr = '';
    19. for($i=0; $i if($i>=$start && $i if(ord(substr($string, $i, 1))>129){

    20. $tmpstr.= substr($string, $i, 2);
    21. }else{
    22. $tmpstr.= substr($string, $i, 1);
    23. }
    24. }
    25. if(ord(substr($string, $i, 1))> 129) $i ;
    26. }
    27. if(strlen($tmpstr) return $tmpstr;
    } }

    複製程式碼
    1. 使用方法:
    $str = "jquery外掛程式實作的載入圖片與頁面效果";
    echo cutstr($str,16);複製程式碼

    10、php取得客戶端真實ip 常常要用資料庫記錄使用者的ip,取得客戶端真實的ip:

    1. //取得使用者真實ip
    2. function getip() {
    3. if (getenv("http_client_ip") && strcasec(getenv( "), "unknown"))
    4. $ip = getenv("http_client_ip");
    5. else
    6. if (getenv("http_x_forwarded_for") && strcasecmp(getenv("http_x_forwardnforfor") )
    7. $ip = getenv("http_x_forwarded_for");
    8. else
    9. if (getenv("remote_addr") && strcasecmp(getenv("remote_addr"), "unknown") else
    10. if (isset ($_server['remote_addr']) && $_server['remote_addr'] && strcasecmp($_server['remote_addr'], "unknnow")
    11. $ip = $_server['remote_addr'];
    12. else
    13. $ip = "unknown";
    14. return ($ip);
    15. }
    複製程式碼
    使用方法:

    1. echo getip();
    複製程式碼

    複製程式碼

    11、 sql注入
    在查詢資料庫時,出於安全考慮,需要過濾一些非法字元以防止sql惡意注入,請看一下函數:
    1. function injcheck($sql_str) {
    2. $check = preg_match('/select|insert|update|delete|'|/*|*| ../|./|union|into|load_file|outfile/', $sql_str);
    3. if ($check) {
    4. echo '非法字元! ! ';
    5. exit;
    6. } else {
    7. return $sql_str;
    }
    }

    複製程式碼

      複製程式碼
    1. 複製碼>使用方法如下:
    2. function message($msgtitle,$message,$jumpurl){
    3. $str = '';
    4. $str🎜> $str .= '';
    5. $str .= '';
    6. $str .= '';
    7. $str .= '頁提示';
    8. $str .= '';
    9. $str .= '';
    10. $str .= '';
    11. $str .= '
      ';
    12. $str .= '

      '.$msgtitle.'

      ';
    13. $ str .= '
      ';
    14. $str .= '

      '.$message.'

      ';
    15. $str .= '

      系統將在3 秒後自動跳轉,如果不想等待,直接點擊這裡 跳轉

      '; $str .= "<script>settimeout('location.replace('".$jumpurl."')',2000)</script>";
    $str .= ' div>'; $str .= '
    '; $str .= ''; $str .= '';

    echo $str;

    }
    1. 複製程式碼
    2. 使用方法:
    3. function changetimetype($seconds) {
    4. if ($seconds > 3600) {
    5. $hours = intval($600);
    $minutes = $seconds % 3600;
    $time = $hours . ":" . gmstrftime('%m:%s', $minutes); } else { $time = gmstrftime('%h:%m:%s', $seconds);
    }

    return $time;

    }
    複製程式碼
    複製程式碼

    複製程式碼使用方法: $seconds = 3712; echo changetimetype($seconds);
    相關標籤:
    來源:php.cn
    本網站聲明
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
    最新問題
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板