php正则过滤文章中图片,比如,想去掉文章中类似这样的标签: <img src=”das”>,如何以正则进行过滤呢?
举例:
<?php
$txt="脚本学堂_www.jb200.com";
$pattern='/<imgs+src=['| "](.*?(?:[.gif|.jpg]))['|"].*?[/]?>/';
$str="用空白替换";
$txt=preg_replace($pattern,$str,$txt);
$str = preg_replace('~<img(.*?)>~s','',$str); //$str是要过滤的文章内容。
?>
以上就是本节php 教程的内容,再一次感受到php 正则的强大威力。
您可能感兴趣的文章:
php正则表达式完全教程六
php正则表达式完全教程五
php正则表达式完全教程四
php正则表达式完全教程三
php正则表达式完全教程二
php正则表达式完全教程一