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