网站地图    收藏   

主页 > php专栏 > php函数大全 >

php获取指定位置内容 - php函数

来源:自学PHP网    时间:2014-11-25 00:26 作者: 阅读:

[导读] 这款函数比较实用于数据采集,一般采集数据时会要指定一个区域的内容,这个代码就可以实例:$str=!--fdaf----;echostrip_comments($str);f...

php获取指定位置内容

这款函数比较实用于数据采集,一般采集数据时会要指定一个区域的内容,这个代码就可以实例:

  1. $str="<!-- fdaf-- -->"
  2. echo strip_comments( $str ); 
  3.  
  4. function strip_comments($data) { 
  5.     $the_rest = $data
  6.     $result = ""
  7.  
  8.     while ($the_rest) { 
  9.         $start = strpos($the_rest"<!--"); 
  10.         if ($start === false) { 
  11.             $result .= $the_rest
  12.             break
  13.         } 
  14.  
  15.         $result .= substr($the_rest, 0, $start); 
  16.  
  17.         $end = strpos($the_rest"-->"$start); 
  18.         if ($end === false) { 
  19.             break
  20.         } 
  21.  
  22.         $the_rest = substr($the_rest$end+3); 
  23.     } 
  24.  
  25.     return $result

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论