On Thursday 15 April 2004 12:15 pm, Chris Boget wrote:
> > 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 )));

Well, if you like long wrapping lines of code..

-- 
Greg Donald
[EMAIL PROTECTED]

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

Reply via email to