Heim  >  Artikel  >  Backend-Entwicklung  >  php读取html并截取字符串的简单代码_PHP

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

WBOY
WBOYOriginal
2016-06-01 12:22:20709Durchsuche

复制代码 代码如下:
$title='';
$hello='bitsCN.com!';
$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><u>复制代码</u> 代码如下:<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.bitsCN.com"; <br>$contents.=_url($url); <br>echo $contents; //输出内容 <br>?><br>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn