php 获取页面中指定内容的实现类


Posted in PHP onJanuary 23, 2014

功能:

1.获取内容中的url,email,image。

2.替换内容中的url,email,image。

url:<a href="url">xxx</a>

email:admin@admin.com

image:<img src="image">

Grep.class.php

<?php 
/** grep class 
* Date: 2013-06-15 
* Author: fdipzone 
* Ver: 1.0 
* 
* Func: 
* 
* set: 设置内容 
* get: 返回指定的内容 
* replace: 返回替换后的内容 
* get_pattern 根据type返回pattern 
*/ class Grep{ // class start 
private $_pattern = array( 
'url' => '/<a.*?href="((http(s)?:\/\/).*?)".*?/si', 
'email' => '/([\w\-\.]+@[\w\-\.]+(\.\w+))/', 
'image' => '/<img.*?src=\"(http:\/\/.+\.(jpg|jpeg|gif|bmp|png))\">/i' 
); 
private $_content = ''; // 源内容 

/* ?置搜?さ?热 
* @param String $content 
*/ 
public function set($content=''){ 
$this->_content = $content; 
} 

/* 获取指定内容 
* @param String $type 
* @param int $unique 0:all 1:unique 
* @return Array 
*/ 
public function get($type='', $unique=0){ 
$type = strtolower($type); 
if($this->_content=='' || !in_array($type, array_keys($this->_pattern))){ 
return array(); 
} 
$pattern = $this->get_pattern($type); // 获取pattern 
preg_match_all($pattern, $this->_content, $matches); 
return isset($matches[1])? ( $unique==0? $matches[1] : array_unique($matches[1]) ) : array(); 
} 

/* 获取替换后的内容 
* @param String $type 
* @param String $callback 
* @return String 
*/ 
public function replace($type='', $callback=''){ 
$type = strtolower($type); 
if($this->_content=='' || !in_array($type, array_keys($this->_pattern)) || $callback==''){ 
return $this->_content; 
} 
$pattern = $this->get_pattern($type); 
return preg_replace_callback($pattern, $callback, $this->_content); 
} 

/* 根据type获取pattern 
* @param String $type 
* @return String 
*/ 
private function get_pattern($type){ 
return $this->_pattern[$type]; 
} 
} // class end 
?>

Demo
<?php 
header('content-type:text/htm;charset=utf8'); require('Grep.class.php'); 
$content = file_get_contents('http://www.test.com/'); 
$obj = new Grep(); 
$obj->set($content); 
$url = $obj->get('url', 0); 
$email = $obj->get('email', 1); 
$image = $obj->get('image', 1); 
print_r($url); 
print_r($email); 
print_r($image); 
$url_new = $obj->replace('url', 'replace_url'); 
echo $url_new; 
function replace_url($matches){ 
return isset($matches[1])? '[url]'.$matches[1].'[/url]' : ''; 
} 
?>
PHP 相关文章推荐
linux php mysql数据库备份实现代码
Mar 10 PHP
PHP在线生成二维码(google api)的实现代码详解
Jun 04 PHP
CodeIgniter采用config控制的多语言实现根据浏览器语言自动转换功能
Jul 18 PHP
PHP+jQuery 注册模块的改进(三):更新到Smarty3.1
Oct 14 PHP
php表单提交与$_POST实例分析
Jan 26 PHP
php操作(删除,提取,增加)zip文件方法详解
Mar 12 PHP
php的crc32函数使用时需要注意的问题(不然就是坑)
Apr 21 PHP
php的debug相关函数用法示例
Jul 11 PHP
功能强大的PHP POST提交数据类
Jul 15 PHP
实例解析php的数据类型
Oct 24 PHP
PHP自动生成缩略图函数的源码示例
Mar 18 PHP
laravel解决迁移文件一次删除创建字段报错的问题
Oct 24 PHP
php 根据url自动生成缩略图并处理高并发问题
Jan 23 #PHP
php 字符串压缩方法比较示例
Jan 23 #PHP
php 生成短网址原理及代码
Jan 23 #PHP
解决php接收shell返回的结果中文乱码问题
Jan 23 #PHP
php弹出对话框实现重定向代码
Jan 23 #PHP
php多种形式发送邮件(mail qmail邮件系统 phpmailer类)
Jan 22 #PHP
简单的php缓存类分享     php缓存机制
Jan 22 #PHP
You might like
php操作SVN版本服务器类代码
2011/11/27 PHP
thinkphp中session和cookie无效的解决方法
2014/12/19 PHP
php使用fputcsv()函数csv文件读写数据的方法
2015/01/06 PHP
PHP使用in_array函数检查数组中是否存在某个值
2015/03/25 PHP
PHP实现通过URL提取根域名
2016/03/31 PHP
微信红包随机生成算法php版
2016/07/21 PHP
ThinkPHP5实现作业管理系统中处理学生未交作业与已交作业信息的方法
2016/11/12 PHP
ThinkPHP下表单令牌错误与解决方法分析
2017/05/20 PHP
用PHP去掉文件头的Unicode签名(BOM)方法
2017/06/22 PHP
js动态添加表格数据使用insertRow和insertCell实现
2014/05/22 Javascript
jQuery 插件开发指南
2014/11/14 Javascript
js调用webservice构造SOAP进行身份验证
2016/04/27 Javascript
JavaScript代码性能优化总结篇
2016/05/15 Javascript
动态加载js、css的简单实现代码
2016/05/26 Javascript
微信小程序 window_x64环境搭建
2016/09/30 Javascript
Base64(二进制)图片编码解析及在各种浏览器的兼容性处理
2017/02/09 Javascript
jQuery实现拖动效果的实例代码
2017/06/25 jQuery
微信小程序实现的绘制table表格功能示例
2019/04/26 Javascript
在vue中使用vant TreeSelect分类选择组件操作
2020/11/02 Javascript
Vue如何实现验证码输入交互
2020/12/07 Vue.js
[58:46]OG vs NAVI 2019国际邀请赛小组赛 BO2 第二场 8.15
2019/08/17 DOTA
Python挑选文件夹里宽大于300图片的方法
2015/03/05 Python
理解Python中的With语句
2016/03/18 Python
Python基础教程之if判断,while循环,循环嵌套
2019/04/25 Python
Pandas DataFrame数据的更改、插入新增的列和行的方法
2019/06/25 Python
python滑块验证码的破解实现
2019/11/10 Python
Python脚本操作Excel实现批量替换功能
2019/11/20 Python
PyTorch中torch.tensor与torch.Tensor的区别详解
2020/05/18 Python
KARATOV珠宝在线商店:俄罗斯珠宝品牌
2019/03/13 全球购物
优秀大学生推荐信范文
2013/11/28 职场文书
学生干部学习的自我评价
2014/02/18 职场文书
法学院毕业生求职信
2014/06/25 职场文书
行政助理岗位职责范本
2015/04/11 职场文书
实施意见格式范本
2015/06/05 职场文书
如何写通讯稿
2015/07/22 职场文书
2019年最新感恩节祝福语(28句)
2019/11/27 职场文书