PHP Facebook SDK / Graph API - How do I include symbols, eg ©, in a wall post?

最后都变了- 提交于 2019-12-29 07:46:10

问题


How do I post symbols (eg. ©) in a wall post using the graph api? Html entities (eg. ©) aren't parsed in facebook.


回答1:


All large text fields are utf-8, use the actual character used to represent it which is U+00A9

If you have HTML entities you can decode with html_entity_decode()

$utf8_text = html_entity_decode("test © foo", ENT_COMPAT, "UTF-8");



来源:https://stackoverflow.com/questions/7796603/php-facebook-sdk-graph-api-how-do-i-include-symbols-eg-in-a-wall-post

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!