当前位置:首页 > PHP教程 > php应用 > 列表

PHP常用技巧汇总

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-13 09:36:39 浏览: 评论:0 

这篇文章主要针对PHP常用技巧进行了详细汇总,感兴趣的小伙伴们可以参考一下

本文为大家分享了多个php常用技巧,供大家参考,具体内容如下

1、PHP文件读取函式

  1. //文件读取函式 
  2. function PHP_Read($file_name) { 
  3. $fd=fopen($file_name,r); 
  4. while($bufline=fgets($fd, 4096)){ 
  5. $buf.=$bufline
  6. fclose($fd); 
  7. return $buf
  8. ?> 

2、文件写入函式

  1. //文件写入函式 
  2. function PHP_Write($file_name,$data,$method=”w”) { 
  3. $filenum=@fopen($file_name,$method); 
  4. flock($filenum,LOCK_EX); 
  5. $file_data=fwrite($filenum,$data); 
  6. fclose($filenum); 
  7. return $file_data
  8. ?> 

3、静态页面生成函式

  1. //静态页面生成函式 
  2. function phptohtm($filefrom,$fileto,$u2u=1){ 
  3. if($u2u==1){ 
  4. $data=PHP_Read($filefrom); 
  5. }else
  6. $data=$filefrom
  7. PHP_Write($fileto,$data); 
  8. return true; 
  9. ?> 

4、指定条件信息数量检索函式

  1. //指定条件信息数量检索函式 
  2. function rec_exist($table,$where){ 
  3. $query=”select count(*) as num from $table “.$where
  4. $result=mysql_query($queryor die(nerror(1)); 
  5. $rowcount=mysql_fetch_array($result); 
  6. $num=$rowcount["num"]; 
  7. if ($num==0){ 
  8. return false; 
  9. return $num
  10. ?> 

5、目录删除函式

  1. //目录删除函式 
  2. function del_DIR($directory){ 
  3. $mydir=dir($directory); 
  4. while($file=$mydir->read()){ 
  5. if((is_dir(“$directory/$file”)) AND ($file!=”.”) AND ($file!=”..”)){ 
  6. del_DIR(“$directory/$file”); 
  7. }else
  8. if(($file!=”.”) AND ($file!=”..”)){ 
  9. unlink(“$directory/$file”); 
  10. //echo “unlink $directory/$file ok “; 
  11. $mydir->close(); 
  12. rmdir($directory); 
  13. //echo “rmdir $directory ok “; 
  14. ?> 

6、目录名称合法性检测函式

  1. //目录名称合法性检测 
  2. function isen($str){ 
  3. $ret=”"; 
  4. for($i=0;$i $p=ord(substr($str,$i,1)); 
  5. if(($p<48 & $p!=45 & $p!=46) || ($p>57 & $p<65) || ($p>90 & $p<97 & $p!=95) || $p>122){ 
  6. nerror(“不符合规范!”); 
  7. $ret.=chr($p); 
  8. return $ret
  9. ?> 

7、PHP分页函数

  1. //分页函数 
  2. function splitlist($HALT,$LRLIST,$ECHOCNT,$paper,$table,$where,$page_id,$userid){ 
  3. global $splitstr,$sumcnt
  4. if($paper==”" || $sumcnt==”"){ 
  5. $query = “select count(*) as num from $table $where”; 
  6. $result = mysql_query($query); 
  7. $row = mysql_fetch_array($result); 
  8. $sumcnt=$row["num"]; 
  9. if($sumcnt==0){ 
  10. nerror(“该版内还没有选择发布新闻 !”); 
  11. $paper=1; 
  12. $sumpaper=($sumcnt-$sumcnt%$ECHOCNT)/$ECHOCNT
  13. if(($sumcnt%$ECHOCNT)!=0) $sumpaper+=1; 
  14. if($sumpaper==1 && $HALT==0) return($where); 
  15. $enwhere=base64_encode(base64_encode($where)); 
  16. if(($LRLIST*2+1) < $sumpaper){ 
  17. if(($paper-$LRLIST) < 2){ 
  18. $tract=1; 
  19. $sub=$LRLIST*2+1; 
  20. }else if(($paper+$LRLIST) >= $sumpaper){ 
  21. $tract=$sumpaper-($LRLIST*2); 
  22. $sub=$sumpaper
  23. }else
  24. $tract=$paper-$LRLIST
  25. $sub=$paper+$LRLIST
  26. }else
  27. $tract=1; 
  28. $sub=$sumpaper
  29. $uppaper=$paper-1; 
  30. $downpaper=$paper+1; 
  31. $startcnt=($paper-1)*$ECHOCNT
  32. $where.=” limit ${ startcnt },${ ECHOCNT }”; 
  33. if($tract > 1) { $splitstr=”【 << “; } 
  34. else $splitstr=”【 << “; 
  35. for($i=$tract;$i<=$sub;$i++){ 
  36. if ($i!=$paper$splitstr.=”".$i.” “; 
  37. else $splitstr.=”".$i.” “; 
  38. if ($sub!=$sumpaper$splitstr.=”>> 】”; 
  39. else $splitstr.=”>> 】”; 
  40. return($where); 
  41. ?> 

PHP关于分页函式的使用说明

8、PHP图片文件上传函式

  1. //图片文件上传函式 
  2. function upload_img($UploadFile,$UploadFile_name,$UploadFile_size,$UploadPath,$max_size=64){ 
  3. //$TimeLimit=60; //设置超时限制时间 缺省时间为 30秒 设置为0时为不限时 
  4. //set_time_limit($TimeLimit); 
  5. if(($UploadFile!= “none” )&&($UploadFile != “” )){ 
  6. $FileName=$UploadPath.$UploadFile_name
  7. if($UploadFile_size <1024){ 
  8. $FileSize=”(string)$UploadFile_size” . “字节”; 
  9. }elseif($UploadFile_size <(1024 * $max_size)){ 
  10. $FileSize=number_format((double)($UploadFile_size / 1024), 1) . ” KB”; 
  11. }else
  12. nerror(“文件超过限制大小!”); 
  13. //{ 
  14. //$FileSize=”number_format((double)($UploadFile_size” / (1024 * 1024)), 1) . ” MB”; 
  15. // } 
  16. if(!file_exists($FileName)){ 
  17. if(copy($UploadFile,$FileName)){ 
  18. return “$UploadFile_name ($FileSize)”; 
  19. }else
  20. nerror(“文件 $UploadFile_name 上载失败!”); 
  21. unlink($UploadFile); 
  22. }else
  23. nerror(“文件 $UploadFile_name 已经存在!”); 
  24. //set_time_limit(30); //恢复缺省超时设置 

以下是一些小技巧:

1、 PHP如何判断ip地址合法性

  1. if(!strcmp(long2ip(sprintf(“%u”,ip2long($ip))),$ip)) echo “is ipn”; 
  2. —- 
  3. email的正则判断 
  4. eregi(“^[_.0-9a-zA-Z-]+@([0-9a-zA-Z][0-9a-zA-Z_-]+.)+[a-zA-Z]$”, $email); 
  5. 检测ip地址和mask是否合法的例子 
  6.    
  7.    
  8. $ip = '192.168.0.84′; 
  9. $mask = '255.255.255.0′; 
  10. $network = '192.168.0′; 
  11. $ip = ip2long($ip); 
  12. $mask = ip2long($mask); 
  13. $network = ip2long($network); 
  14. if( ($ip & $mask) == $networkecho “valid ip and maskn”; 
  15. ?> 

2、PHP文件下载头部输出如何设定

  1. header(“Content-type: application/x-download”); 
  2. header(“Content-Disposition: attachment; filename=$file_download_name;”); 
  3. header(“Accept-Ranges: bytes”); 
  4. header(“Content-Length: $download_size”); 
  5. echo ‘xxx' 

3、PHP用header输出ftp下载方式,并且支持断点续传

一个例子:

  1. header(‘Pragma: public'); 
  2. header(‘Cache-Control: private'); 
  3. header(‘Cache-Control: no-cache, must-revalidate'); 
  4. header(‘Accept-Ranges: bytes'); 
  5. header(‘Connection: close'); 
  6. header(“Content-Type: audio/mpeg”); 
  7. header(“Location:ftp://download:1bk3l4s3k9s2@232.2.22.22/2222/web技术开发知识库/cn_web.rmvb”); 

4、PHP正则匹配中文

ereg(“^[".chr(0xa1)."-".chr(0xff)."]+$”, $str);

5、批量替换文本里面的超级链接

  1. function urlParse($str = ”){ 
  2. if (” == $strreturn $str
  3. $types = array(“http”, “ftp”, “https”); 
  4. $replace = << 
  5. ”.htmlentities('1′).htmlentities('2′).” 
  6. EOPHP; 
  7. $ret = $str
  8. while(list(,$type) = each($types)){ 
  9. $ret = preg_replace(“|($type://)([^s]*)|ie “, $replace, $ret); 
  10. return $ret

以上就是本文的全部内容,很常用的php技巧送给大家,希望大家喜欢。

Tags: PHP常用技巧

分享到: