我从我的Android应用程序发送JSON并使用:file_get_contents('php:// input');
来自应用程序的JSON是正确的UTF-8,但来自file_get_contents('php://input');
我没有得到正确的UTF-8 JSON
一些字符被替换
示例:
from application: Lukáš, Pavlovičovo
from file_get_contents: Luká?, Pavlovi?ovo
这是我的php:
<?php
mb_http_output( "UTF-8" );
$json = file_get_contents('php://input');
$json=trim($json,'"');
$json=utf8_encode($json);
$data = json_decode($json,true);
你能告诉我如何从UTF-8中获取file_get_contents正确的JSON吗?
感谢