$language = file_get_contents('http://api.microsofttranslator.com/V2/Ajax.svc/Detect?appid=APPID&text=hello');

$language = str_replace('"', '', $language);

if($language != 'en')
{
    echo 'not english';
}
{
    echo 'english';
}

So, what happens in the code above is file_get_contents will output "en", I then remove the quotation marks and compare if it is equal to en. But the problem with the code above is that it will output not english even though 'en' != 'en'.

Any idea what I could be doing wrong? I also tried to convert $language to a string (string)$language, but that didn't fix it either.

link|improve this question
What's the output of var_dump( $language ) before and after the str_replace()? – Rijk Sep 6 '11 at 13:30
string(7) ""en"" string(5) "en" – user317005 Sep 6 '11 at 13:35
What could the remaining 3 characters be? – user317005 Sep 6 '11 at 13:36
feedback

1 Answer

up vote 2 down vote accepted

The result you're getting from Bing contains a BOM, or a byte order mark, which is invisible when echoed.

To remove the BOM, try this function:

function removeBOM($str = "") {
    if (substr($str, 0, 3) == pack("CCC",0xef,0xbb,0xbf)) {
        $str=substr($str, 3);
    }
    return $str;
}

So line 3 of your code would be:

$language = removeBOM(str_replace('"', '', $language));
link|improve this answer
That worked! Thanks so much, Taavi! – user317005 Sep 6 '11 at 13:47
And thanks for signing up to help me out? :) – user317005 Sep 6 '11 at 13:49
1  
You're welcome! I've gotten tons of good help from this site, so today I finally decided to create an account to try to give back a bit. :) – Taavi Sep 6 '11 at 14:06
feedback

Your Answer

 
or
required, but never shown