php读取html并截取字符串的简单代码
php读取html并截取字符串的简单代码
发布时间:2016-12-29 来源:查字典编辑
摘要:复制代码代码如下:下面是渝海用的小偷程序代码。大家可以多看下。查字典教程网提供多款小偷程序。复制代码代码如下:

复制代码 代码如下:

<?php

$title='查字典教程网';

$hello='jb51.net!';

$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

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.jb51.net";

$contents.=_url($url);

echo $contents; //输出内容

?>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新php教程学习
热门php教程学习
编程开发子分类