Hi, thanks for the help!
Maybe that should work on php 7 but I’ve php 5.6 and for me it doesn’t work.
I’ve tried this:
echo html_entity_decode('😉', 0, 'UTF-8');
and I could see the winking face on the browser
so i tried to append that to the text that will be sent to the API:
$TEXT="@twitterapi trying to tweet an emoji from php script: "; $TEXT=utf8_encode($TEXT).html_entity_decode('😉', 0, 'UTF-8');
And i got this:
https://twitter.com/3R_LikeNoOther/status/703344309513428992
So I solved it and i hope that it will be helpful for somebody else too!
