Home > php教程 > php手册 > php读取html并截取字符串的简单代码

php读取html并截取字符串的简单代码

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-13 12:19:57
Original
1247 people have browsed it

复制代码 代码如下:


$title='脚本之家';
$hello='jb51.net!';
$file=file_get_contents('http://www.baidu.com');
$file=iconv("gbk//IGNORE","utf-8",$file);
//echo $file;
echo strpos($file,'

'); <br>echo substr($file,strpos($file,'<title>')+7,strpos($file,''-strpos($file,'')+7)); <br>$file=str_replace(array('百度一下','{hello}'),array($title,$hello), $file); <br>?> <br><br>下面是渝海用的小偷程序代码。大家可以多看下。脚本之家提供多款小偷程序。<br><p class="codetitle"><span style="CURSOR: pointer" onclick="doCopy('code4283')"><u>复制代码</u></span> 代码如下:</p> <p class="codebody" id="code4283"><br><?php <BR>function _url($Date){ <br>    $ch = curl_init(); <br>    $timeout = 5; <br>    curl_setopt ($ch, CURLOPT_URL, "$Date"); <br>    curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1); <br>    curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)"); <br>    curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout); <br>    $contents = curl_exec($ch); <br>    curl_close($ch); <br>    return $contents; <br>} <br>$url="http://www.jb51.net"; <br>$contents.=_url($url); <br>echo $contents; //输出内容 <br>?><br></p>
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template