Prueba con:
Código PHP:
Ver original<?php
function trimInside($t){
while(strpos($t, " ") !== false){ }
return $t;
}
$file = "test.txt";
?>
<textarea style="width:300px; height:300px;"><?php echo $fr; ?></textarea><br/>
<textarea style="width:300px; height:300px;"><?php echo trimInside($fr); ?></textarea><br/>