欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

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

程序员文章站 2022-04-09 10:25:30
...
复制代码 代码如下:


$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><span><u>复制代码</u></span> 代码如下:</p> <p><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> <p> 以上就介绍了字符串 php读取html并截取字符串的简单代码,包括了字符串方面的内容,希望对PHP教程有兴趣的朋友有所帮助。</p>
相关标签: 字符串