Home » PHP Code »
Following script will work for remove the newline and remove the consecutive white spaces
function remW( $content ) { $content = trim(ereg_replace(“\n|\r|\r\n|\n\r”, ”, preg_replace(‘/\s+/’, ‘ ‘, $content))); return $content; }
(Required)
(Will not be published) (Required)
(Optional)