<?php
$lorem=" Lorem Ipsum Dolor ";
$lorem1="Sit Amet Amen quod";
function clearSpaces($string,$switcher) {
if ($switcher=="left"){
return ltrim($string);
}
else if ($switcher=="right"){
return rtrim($string);
}
else if ($switcher=="both"){
return trim($string);
}
}
echo "<pre>";
echo clearSpaces($lorem,"both")."+".$lorem1;
echo "</pre>";
?>