Heim  >  Artikel  >  Backend-Entwicklung  >  php替换html内容的小函数

php替换html内容的小函数

WBOY
WBOYOriginal
2016-07-25 08:55:33969Durchsuche
  1. /**

  2. * 替换html内容
  3. * by bbs.it-home.org
  4. */
  5. function htmlsp($a)
  6. {
  7. if(strpos($a, ' {
  8. echo $a;
  9. }else
  10. {
  11. while(strpos($a, '=0)
  12. {
  13. if(strpos($a, ' break;
  14. $x1 = strpos($a, ' $x2 = strpos($a, '>', 0);

  15. if($x2===false) //if 特殊需要,因为内容可能只有结束

  16. $x2 = strlen($a);
  17. $t = substr($a, $x1, $x2 - $x1 + 1);
  18. $a = str_replace($t,'',$a);

  19. }
  20. echo $a;
  21. }
  22. }
复制代码

>>>您可能感兴趣的文章: PHP字符串替换函数 可同时替换多个关键词 php替换文件中个别字词的实例代码 php关键词替换的类(避免重复替换,保留与还原原始链接) php实现关键词替换与加亮的代码 php关键字替换类的实例代码 php内容关键字替换的函数分享 php查找、替换字符串中http地址的代码分享 php批量替换相对地址为绝对地址的实例代码 php替换网址中参数变量的代码 替换超长文本中的特殊字符的php代码 提供几个php替换换行符的方法 使用正则表达式进行查找替换



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn