程序员人生 网站导航

php获取指定位置内容

栏目:php教程时间:2014-01-01 16:14:13

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

  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
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐