最模板 - 外贸网站建设,外贸网站模板

最模板

当前位置: 首页 > 建站教程 > php教程 >

php获取指定位置内容

时间:2014-06-09 16:40来源: 作者: 点击:
这款函数比较实用于数据采集,一般采集数据时会要指定一个区域的内容,这个代码就可以实例: $str = !--fdaf---- ; echo strip_comments( $str ); function strip_comments( $data ){ $the_rest = $data ; $result = ; while ( $t

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

  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
(责任编辑:admin)
------分隔线----------------------------
栏目列表
推荐内容