php读取html并截取字符串的简单代码
作者:bea
代码如下: <?php $title=''; $hello='!'; $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,st
代码如下:
<?php
$title='';
$hello='!';
$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://";
$contents.=_url($url);
echo $contents; //输出内容
?>
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php smarty模版引擎中变量操作符及使用方法
- phpmyadmin导入(import)文件限制的解决办法
- php smarty模版引擎中的缓存应用
- php5 图片验证码实现代码
- php下图片文字混合水印与缩略图实现代码
- 一个比较简单的PHP 分页分组类
- Php 构造函数construct的前下划线是双的_
- PHP 读取文件内容代码(txt,js等)
- PHP 用数组降低程序的时间复杂度
- PHP 柱状图实现代码
- Ajax+PHP边学边练 之五 图片处理
- PHPMyadmin 配置文件详解(配置)
- 又一个php 分页类实现代码
- php 无限分类的树类代码
- Asp.net 文本框全选的实现
- php zip文件解压类代码
- PHP5 面向对象(学习记录)
- php smarty模版引擎中的缓存应用
- PHP MYSQL乱码问题,使用SET NAMES utf8校正