php读取html并截取字符串的小例子

发布时间:2020-08-03编辑:脚本学堂
分享一例php读取html内容,并截取指定字符串的代码,多用于php采集网站内容中,有兴趣的朋友参考下吧。

本节内容:
php读取html并截取字符串

例子:
 

复制代码 代码示例:
<?php
/**
* 读取html并截取字符串
* by unun
*/
$title='脚本学堂';
$hello='jb200.com!';
$file=file_get_contents('http://www.baidu.com');
$file=iconv("gbk//IGNORE","utf-8",$file);
//echo $file;
echo strpos($file,'<title>');
echo substr($file,strpos($file,'<title>')+7,strpos($file,'</title>'-strpos($file,'<title>')+7));
$file=str_replace(array('百度一下','{hello}'),array($title,$hello), $file);
?>

附,一个小偷程序代码。
 

复制代码 代码示例:
<?php
/**
* 网站小偷程序
* by unun
*/
function _url($Date){
    $ch = curl_init();
    $timeout = 5;
    curl_setopt ($ch, CURLOPT_URL, "$Date");
    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)");
    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $contents = curl_exec($ch);
    curl_close($ch);
    return $contents;
}
$url="http://www.jb200.com";
$contents.=_url($url);
echo $contents; //输出内容
?>

您可能感兴趣的文章:
PHP中文字符串截取的四个函数
php 截取指定长度字符串的代码分享
支持中文的php字符串截取函数实例
php字符串截取(substr的应用与扩展)
四个php中文字符串截取函数
php计算中文字符串长度、截取中文字符串的函数
字符串截取函数(汉字一个算两个字符,英文算一个字符)
PHP中文字符串截取函数