php clean output


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. function cleanFinalOutput( $html )
  2. {
  3. $html = eregi_replace( "\n", '', $html );
  4. $html = eregi_replace( "\r", '', $html );
  5. return eregi_replace( "\t", '', $html );
  6. }

Report this snippet


Comments


You need to login to view comments.