<?php
$text = "Pouvez-vous me dire quelle heure il est ? Merci.";
foreach (new TextIterator($text, TextIterator::LINE) as $u) {
if ($u != " ") echo($u),"<br/>\n";
}
?>
Output
<?php
$text = "Pouvez-vous me dire quelle heure il est ? Merci.";
foreach (new TextIterator($text, TextIterator::LINE) as $u) {
if ($u != " ") echo($u),"<br/>\n";
}
?>