偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

經(jīng)驗(yàn)分享 總結(jié)PHP常用函數(shù)

開(kāi)發(fā) 后端
這篇文章中介紹的PHP常用函數(shù)包括產(chǎn)生隨機(jī)字符串函數(shù);截取一定長(zhǎng)度的字符串;取得客戶(hù)端ip地址;創(chuàng)建相應(yīng)的文件夾等。

PHP的功能強(qiáng)大,主要是體現(xiàn)在了龐大的函數(shù)庫(kù)上。在接下來(lái)的文章中,我們將為大家系統(tǒng)的講解一些PHP常用函數(shù),供大家參考學(xué)習(xí)。#t#

PHP常用函數(shù)1.產(chǎn)生隨機(jī)字符串函數(shù)

  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常用函數(shù)2.截取一定長(zhǎng)度的字符串

注:該函數(shù)對(duì)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常用函數(shù)3.取得客戶(hù)端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常用函數(shù)4.創(chuàng)建相應(yīng)的文件夾
 

  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. }  


 

責(zé)任編輯:曹凱 來(lái)源: 百度博客
相關(guān)推薦

2011-07-11 10:24:09

PHP

2009-11-16 15:32:05

PHP數(shù)組函數(shù)

2009-12-07 11:11:46

PHP顯示圖片

2011-07-08 13:15:52

JSP

2009-11-17 11:24:00

PHP應(yīng)用技巧

2009-12-08 18:11:42

PHP系統(tǒng)常量

2010-09-26 13:48:51

JVM調(diào)優(yōu)

2015-03-10 11:30:00

MySQL日志維護(hù)

2009-12-09 13:11:03

PHP框架常見(jiàn)錯(cuò)誤

2011-07-12 16:51:14

PHP

2011-07-10 15:07:37

2009-12-08 19:24:09

PHP函數(shù)索引

2009-12-11 17:39:47

PHP String函

2009-12-11 17:45:09

PHP Math函數(shù)

2011-07-07 17:27:54

PHP

2011-07-07 17:24:28

PHP

2014-04-02 10:56:21

2009-11-16 10:57:51

PHP上傳文件代碼

2009-12-08 14:00:11

PHP函數(shù)microt

2024-11-11 09:39:11

Cloudflare遷移Go
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號(hào)