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

經驗分享 總結PHP常用函數

編輯:關於PHP編程

PHP常用函數1.產生隨機字符串函數

  1. function random($length) {  
  2. $hash = @#@#;  
  3. $chars = @#abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmnopqrstuvwxyz@#;  
  4. $max = strlen($chars) - 1;  
  5. mt_srand((double)microtime() * 1000000);  
  6. for($i = 0; $i < $length; $i++) {  
  7. $hash .= $chars[mt_rand(0, $max)];  
  8. }  
  9. return $hash;  
  10. }  

PHP常用函數2.截取一定長度的字符串

注:該函數對gb2312使用有效

  1. function wordscut($string, $length ,$sss=0) {  
  2. if(strlen($string) > $length) {  
  3. if($sss){  
  4. $length=$length - 3;  
  5. $addstr=@# ...@#;  
  6. }  
  7. for($i = 0; $i < $length; $i++) {  
  8. if(ord($string[$i]) > 127) {  
  9. $wordscut .= $string[$i].$string[$i + 1];  
  10. $i++;  
  11. } else {  
  12. $wordscut .= $string[$i];  
  13. }  
  14. }  
  15. return $wordscut.$addstr;  
  16. }  
  17. return $string;  
  18. }  

PHP常用函數3.取得客戶端ip地址
 

  1. function getip(){  
  2. if (getenv("http_client_ip") 
    && strcasecmp(getenv("http_client_ip"), "unknown"))  
  3. $ip = getenv("http_client_ip");  
  4. else if (getenv("http_x_forwarded_for") 
    && strcasecmp(getenv("http_x_forwarded_for"), "unknown"))  
  5. $ip = getenv("http_x_forwarded_for");  
  6. else if (getenv("remote_addr")
     && strcasecmp(getenv("remote_addr"), "unknown"))  
  7. $ip = getenv("remote_addr");  
  8. else if (isset($_server[@#remote_addr@#])
     && $_server[@#remote_addr@#] 
    && strcasecmp($_server[@#remote_addr@#], "unknown"))  
  9. $ip = $_server[@#remote_addr@#];  
  10. else  
  11. $ip = "unknown";  
  12. return($ip);  
  13. }  

PHP常用函數4.創建相應的文件夾
 

  1. function createdir($dir=@#@#)  
  2. {  
  3. if (!is_dir($dir))  
  4. {  
  5. $temp = explode(@#/@#,$dir);  
  6. $cur_dir = @#@#;  
  7. for($i=0;$i<count($temp);$i++)  
  8. {  
  9. $cur_dir .= $temp[$i].@#/@#;  
  10. if (!is_dir($cur_dir))  
  11. {  
  12. @mkdir($cur_dir,0777);  
  13. }  
  14. }  


 


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