php替换html内容

function htmlsp($a)
 {


 if(strpos($a, '<', 0)===false)
 {
  echo $a;
 }else
 {
  while(strpos($a, '<', 0)>=0)
  {
   if(strpos($a, '<', 0)===false)
    break;


   $x1 = strpos($a, '<', 0);


   $x2 = strpos($a, '>', 0);


   if($x2===false)              //这里有if的原因是 特殊需要,因为内容可能只有<开始,没有>结束
      $x2 = strlen($a);
   $t = substr($a, $x1, $x2 - $x1 + 1);


   $a = str_replace($t,'',$a);
  }
  echo $a;
 }


 }

你可能感兴趣的:(php替换html内容)