vote up 0 vote down star

json_encode() wont work for me when I'm using åäö. Why? And how can I get it to work?

The php:

echo json_encode($arr);

The javascript:

var theResponse = JSON.parse(xmlHttp.responseText);

When I alert() the response, and the response contains å, ä or ö, the response is = NULL

Please, help me out...

flag

What output are you getting? Which JSON library are you using? – Peter Bailey Sep 8 at 14:24
The output is NULL if it contains å, ä or ö. The JSON library is JSON.org/json2.js – Johan Sep 8 at 14:29
3  
What PHP version are you using? I believe early versions of json_encode() only handled UTF-8 strings properly. Try utf8_encode-ing the the string before encoding and see if that works. – gunderwonder Sep 8 at 14:37
PHP version is 5.something. Have tried utf8_encode but it did not work for me. – Johan Sep 8 at 14:43
Actually utf8_encode did work :) !!! Happy again. – Johan Sep 8 at 14:48
show 1 more comment

4 Answers

vote up 4 vote down

It says in the json_encode() documentation:

This function only works with UTF-8 encoded data.

You should convert it to utf-8 with iconv or mbstring first.

link|flag
vote up 0 vote down check

As Greg mentioned, I had to encode åäö to UTF-8. But I did't use iconv or mbstring. When I utf8_encode() all values before putting the values to the array the problem was solved.

link|flag
vote up 0 vote down

Using the standard method when reading from MySql: $resultArray = array(); while($obj = MySQL_fetch_object($res)) { $resultArray[] = $obj; } $result = json_encode($resultArray);

The encoding can be done using the following: $resultArray = array(); while($obj = MySQL_fetch_object($res)) { foreach($obj as $key => $value) { if (!is_null($value)) { $obj->$key = utf8_encode($value); } } $resultArray[] = $obj; } $result = json_encode($resultArray);

The "if is_null" has to be included to get fields (eg. DateTime fields) staying null.

link|flag
vote up 0 vote down

JSON defines strings as Unicode!

JSON Definition

You have to encode you ISO to UTF-8

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.