经验分享 总结PHP常用函数

PHP的功能强大,主要是体现在了庞大的函数库上。在接下来的文章中,我们将为大家系统的讲解一些PHP常用函数,供大家参考学习。#t#

创新互联是专业的零陵网站建设公司,零陵接单;提供成都网站建设、网站设计,网页设计,网站设计,建网站,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
  8. {  
  9. $cur_dir .= $temp[$i].@#/@#;  
  10. if (!is_dir($cur_dir))  
  11. {  
  12. @mkdir($cur_dir,0777);  
  13. }  
  14. }  

网页题目:经验分享 总结PHP常用函数
文章起源:http://www.stwzsj.com/qtweb/news42/4742.html

成都网站建设公司_创新互联,为您提供标签优化网站改版企业建站小程序开发App设计网站内链

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联