I am writing html content to a BML file, how can I remove new lines/whitespace so it is all in one long string?
does preg_replace("
","")
work?
I am writing html content to a BML file, how can I remove new lines/whitespace so it is all in one long string?
does preg_replace("
","")
work?
Better use platform independent ending line constant PHP_EOL
which is equivalent to array("
", "", "
")
in this case...
$html = str_replace(PHP_EOL, null, $html);