problems with german umlauts in php json_encode problems with german umlauts in php json_encode json json

problems with german umlauts in php json_encode


Check out this pretty elegant solution mentioned here:

json_encode( $json_full, JSON_UNESCAPED_UNICODE );

If the problem isn't anywhere else in your code this should fix it.

Edit: Umlaut problems can be caused by a variety of sources like the charset of your HTML document, the database format or some previous php functions your strings run through (You should definitely look into multibyte functions when having problems with umlauts).

These problems tend to be the pretty annoying because they are hard to track in most cases (altough this isn't as bad as it was a few years ago). The function above fixes – as asked – umlaut problems with json_encode … but there is a good chance that the problem is caused by a different part of your application and not this specific function.


I know this might be old but here a better solution:

Define the document type with utf-8 charset:

<?php header('Content-Type: application/json; charset=utf-8'); ?>

Make sure that all content is utf_encoded. JSON works only with utf-8!

function encode_items(&$item, $key){    $item = utf8_encode($item);}array_walk_recursive($rows, 'encode_items');

Hope this helps someone.


You probably just want to show the texts somehow in the browser, so one option would be to change the umlauts to HTML entities by using htmlentities().

The following test worked for me:

<?php    $test = array( 'bla' => 'äöü' );    $test['bla'] = htmlentities( $test['bla'] );    echo json_encode( $test );?>