当前位置:首页 > PHP教程 > php函数 > 列表

php获取指定位置内容

发布:smiling 来源: PHP粉丝网  添加日期:2014-06-03 10:42:00 浏览: 评论:0 

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

  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

Tags: php 指定位置

分享到: