$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.
var_dump( $language )before and after thestr_replace()? – Rijk Sep 6 '11 at 13:30string(7) ""en"" string(5) "en"– user317005 Sep 6 '11 at 13:35