以上就是本节php 教程的内容,再一次感受到php ">
输入banner图图片脚本导航/分类

PHP正则过滤文章中图片的方法

  1. $txt="程序员之家_bbs.it-home.org";

  2. $pattern='//';
  3. $str="用空白替换";
  4. $txt=preg_replace($pattern,$str,$txt);

  5. $str = preg_replace('~~s','',$str); //$str是要过滤的文章内容。

  6. ?>

以上就是本节php 教程的内容,再一次感受到php 正则的强大威力。