当前位置:Gxlcms > PHP教程 > PHP正则过滤文章中图片的方法

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

时间:2021-07-01 10:21:17 帮助过:16人阅读

  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 正则的强大威力。

人气教程排行