$obj = [{"name":"Hình Ảnh","url":"images"}];
$str = json_encode($obj);
result:
[{"name":"H\u00ecnh \u1ea2nh","url":"hinh_anh"}]
Why?
Why $str
not is:
[{"name":"Hình Ảnh","url":"images"}];
$obj = [{"name":"Hình Ảnh","url":"images"}];
$str = json_encode($obj);
result:
[{"name":"H\u00ecnh \u1ea2nh","url":"hinh_anh"}]
Why?
Why $str
not is:
[{"name":"Hình Ảnh","url":"images"}];
Add your file this code
header('Content-type: text/html; charset=UTF-8') ;
and change
$str = json_encode($obj, JSON_UNESCAPED_UNICODE);