* Thus wrote John W. Holmes ([EMAIL PROTECTED]):
> From: "Chris Boget" <[EMAIL PROTECTED]>
> 
> > > function cleanFinalOutput($html){
> > >   $return = eregi_replace("\n", "", $html);
> > >   $return = eregi_replace("\r", "", $return);
> > >   return eregi_replace("\t", "", $return);
> > > }
> >
> > Not to be too pedantic, but you could probably reduce the above
> > to a single line function:
> >
> > function cleanFinalOutput($html){
> >   return eregi_replace("\n", "", eregi_replace("\r", "",
> eregi_replace("\t",
> > "", $html )));
> 
> Certainly don't need to fire up the regex engine.
> 
> return str_replace(array("\r","\n","\t"),'',$html);

and yet another way:

  return strtr($html, array("\t" => '', "\n" => '', "\r" => ''))

Curt
-- 
"I used to think I was indecisive, but now I'm not so sure."

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to