$json = array('name' => 'Руслан', 'last_name' => 'Садыхов'); return json_encode($json); Similar symbols are returned instead of the first and last names: \ u0420 \ u0443 \ u0441 \ u043b \ u0430 \ u043d
How can this be fixed?
$json = array('name' => 'Руслан', 'last_name' => 'Садыхов'); return json_encode($json); Similar symbols are returned instead of the first and last names: \ u0420 \ u0443 \ u0441 \ u043b \ u0430 \ u043d
How can this be fixed?
Source: https://ru.stackoverflow.com/questions/189243/
All Articles
\u0420-Р,\u0443-у, etc. - alexlz