简体   繁体   English

facebook墙帖子编码问题?

[英]facebook wall post encoding problem?

im using "ISO-8859-9" encoding. 即时通讯使用“ ISO-8859-9”编码。

my application post data to users wall but i have facebook wall post encoding problem? 我的应用程序将数据发布到用户墙,但是我有Facebook墙发布编码问题? i tried utf-8 encoding in wallpost.php(this is my php file for wall post) but didn't served. 我在wallpost.php中尝试了utf-8编码(这是我在墙上发布的php文件),但没有提供。

What can i do? 我能做什么?

(Sorry my first language isn't English..) (对不起,我的母语不是英语。)

i find iconv function. 我发现iconv功能。

$array = array(
                'name' => $burcname . ' Günlük yorumum',
                'link' => 'http://apps.facebook.com/gunlukburcpaylas/sonuc.php?burc='. $burc,
                'description' => $burcname . ' Günlük yorumu. Sizde her gün profilinizde günlük burç yorumunuz için uygulamaya katılın..',
                'message' => $aciklama,
                'picture' => $picture
                );
            foreach ($array as $key => $value) 
            {
                $array[$key] = iconv('ISO-8859-9', 'UTF-8', $value);
            }

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM