Log 3159
08/04/2024 2024-04-08 11:55$text = ”;
$input_text = ”;
$words = explode(‘ ‘, $input_text);
foreach ($words as $word) {
if (strlen($word) > 0) {
$text .= $word . ‘ ‘;
} else {
continue;
}
}
return trim($text);