- var_export: documentation ( source)
- trim: documentation ( source)
- preg_replace: documentation ( source)
<?php
$string = "
My text has so much whitespace
Plenty of spaces and tabs ";
var_export(
preg_replace(
['/\h+/', '/\v+/'],
[' ', PHP_EOL],
trim($string)
)
);