I have problem when used function trim() with this code
$handle = @fopen("55.txt", "r");
if ($handle) {
while (($buffer = fgets($handle, 4096)) !== false) {
$d = explode(" ", $buffer);
foreach($d as $val) {
echo '<br>'.trim($val,'.'); //why not work
}
}
if (!feof($handle)) {
echo "Error: unexpected fgets() fail\n";
}
fclose($handle);
}
The trim() doesn't trim '.'.


.that you're trying totrim()? Show the sample contents of55.txt– Michael Berkowski Nov 24 '12 at 22:25