这篇文章主要为大家详细介绍了php 批量删除超链接的简单示例,具有一定的参考价值,可以用来参考一下。
对php批量删除超链接感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
/**
* php批量删除超链接
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
$str=preg_replace("/<a[^>]*href=[^>]*>|<\/[^a]*a[^>]*>/i","",$content);
/*** 来自四海网(www.q1010.com) ***/
1、删除html文本内容中的超链接
/**
* php批量删除超链接
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
ereg_replace("<a [^>]*>|<\/a>","",$content);
/*** 来自四海网(www.q1010.com) ***/
2、清除包含指定关键词的超链接
/**
* php批量删除超链接
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
$find="this string is my find";
$string='<font color="red">这段内容将要被替换掉</font>';//将超链接替换成的内容
echo ereg_replace('<a([^>]*)>([^<]*'.$find.'[^>]*)</a>','<font color="red">\\2</font>',$content);
/*** 来自四海网(www.q1010.com) ***/
下面同时分享几种获取html文本内容中的超链接的文本内容方法:
/**
* php批量删除超链接
*
* @param
* @arrange 512-笔记网: www.q1010.com
**/
//方法一
preg_match_all('/<(a|a)[s]{0,1}[w=":()]*>[nrn]*(check user)[nrn]*</(a|a)>/i',$string,$matches);
//方法二
preg_match_all('/<a[dd]*>check user</a>/i',$string,$matches);
print_r($matches);
//方法三
preg_match_all('/<a[^>]*>[^<]*</a>/i',$string,$matches);
print_r($matches);
//方法四
preg_match_all('/<a.+?>check user</a>/is',$str,$arr);
print_r($arr);
//方法五
preg_match_all('/<a.+?>check user</a>/is',$str,$arr);
print_r($arr);
/*** 来自四海网(www.q1010.com) ***/
本文来自:http://www.q1010.com/173/1384-0.html
注:关于php 批量删除超链接的简单示例的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:超链接
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。