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.
 $fql = 'SELECT name from user where uid = ' . $user;
            $result = $this->facebook->api(array(
                                       'method' => 'fql.query',
                                       'query' => $fql,
                                     ));
var_dump($result);

I select my name from facebook the result is not encoded right Škofja Loka is Å kofja Loka . I have tried to change this utf_encode and utf_decode, but it does not work.

share|improve this question
1  

1 Answer

up vote 2 down vote accepted

"Š" is not in ISO-8859-1 so utf8_decode/utf8_encode, which convert from and to ISO-8859-1, cannot deal with it. You should never use those functions anyway, PHP is perfectly fine with UTF-8 without any decoding or encoding.

It looks like all you need is the http header for UTF-8 charset though:

<?php
//Before any output
header("Content-Type: text/html; charset=utf-8");

...


 $fql = 'SELECT name from user where uid = ' . $user;
            $result = $this->facebook->api(array(
                                       'method' => 'fql.query',
                                       'query' => $fql,
                                     ));
var_dump($result);
share|improve this answer

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.