PHP采集代码实例
喔小子
2013-11-17
<?php function preg_substr($start$end$str) // 正则截取函数 { $temp = preg_split($start$str); $content = preg_split($end$temp[]); return $content[ ]; } function str_substr($start$end$str) // 字符串截取函数 { $temp = explode($start $str); $content = explode($end$temp[]); return $content[ ]; } //使用实例 $str = iconv("UTF""GB"file_get_contents(" echo (标题:str_substr("<title>""</title>"$str)); // 通过字符串提取标题 echo (作者:preg_substr("/userid=d+">/""/<//"$str)); // 通过正则提取作者 echo (内容:str_substr(<div class="content"></div>$str)); //内容当然不可以少 ?> |