Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 '.'.

share|improve this question
7  
Well, what is the input data? Does it have trailing whitespace after the trailing . that you're trying to trim()? Show the sample contents of 55.txt – Michael Berkowski Nov 24 '12 at 22:25
show content of 55.txt – Marcin Orlowski Nov 24 '12 at 22:32
The example you regrade will remove "." from the beginning and end of the contents of 55.txt – sємsєм Nov 24 '12 at 22:33
1  
Welcome to Stack Overflow, by the way. Don't worry - we almost always ask for more information and your first question at least is concise and includes code. – Michael Berkowski Nov 24 '12 at 22:37

2 Answers

up vote 0 down vote accepted

Additional to the lines themselves, the fgets() function returns the line breaks from the file, which are after the dots in the string, thus preventing the dots from being trimmed, because they are not actually the last character.

Try to trim the dots and possible line breaks at the same time:

echo '<br>'.trim($val, ".\r\n");
share|improve this answer
thank you ,but why add \r\n can you Lead me to site or book to learn who I do that. – user201635 Nov 24 '12 at 22:53
These are the line break characters in a PHP string, here's a little more about these go4expert.com/forums/showthread.php?t=8021 – Wolfgang Stengel Nov 24 '12 at 23:00

do

substr(trim($val),1,stlen(trim($val)));

instead of

trim($val,'.');

if you want to remove the leading and trailing '.'

share|improve this answer
3  
Um, I believe the OP wants to remove the leading and trailing ., not add them. – Michael Berkowski Nov 24 '12 at 22:27
@user201635 is this what you are looking for? – badbetonbreakbutbedbackbone Nov 24 '12 at 22:45
as usually downvotes without a reason why :/ – badbetonbreakbutbedbackbone Nov 24 '12 at 22:45

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.