Jogga Posted January 10, 2012 Share Posted January 10, 2012 Hi, sorry if this has been covered elsewhere but I'm stuck. I'm trying to output individual headers when converted from json into an array. The array contains 6 headers eg. description, url etc but my result looks like the json_decode isn't working. The raw data looks fine when I output from print_r on the page. The code looks like this: -------------------------------------------------------------------- $json_array = json_decode($json,true); //print_r ($json_array); foreach ($json_array as $row) { echo $row["description"]." = ".$row["url"]."<br />"; ---------------------------------------------------------------------- the result is: ----------------------------------------------------------------------- C = C h = h = 0 = 0 c = c C = C ----------------------------------------------------------------------- Can anyone help or point me to a tutorial I can work though. Thanks Jogga Quote Link to comment https://forums.phpfreaks.com/topic/254723-jsonmulti-dimensional-array-help-needed/ Share on other sites More sharing options...
silkfire Posted January 10, 2012 Share Posted January 10, 2012 Please print your original JSON string? Quote Link to comment https://forums.phpfreaks.com/topic/254723-jsonmulti-dimensional-array-help-needed/#findComment-1306117 Share on other sites More sharing options...
Jogga Posted January 10, 2012 Author Share Posted January 10, 2012 Hi, thanks for replying. It's... Array ( [description] => test => http://test [engagement_methods] => Array ( [0] => Array ( => http://test [description] => test Facebook page [title] => Facebook ) [1] => Array ( => http://test [description] => test Flickr page [title] => Flickr ) [2] => Array ( => http://test [description] => test Twitter page [title] => Twitter ) [3] => Array ( => http://test [description] => test Website [title] => Website ) [4] => Array ( => http://test [description] => test Twitter page [title] => Youtube ) ) [telephone] => test [id] => test [name] => test account ) Quote Link to comment https://forums.phpfreaks.com/topic/254723-jsonmulti-dimensional-array-help-needed/#findComment-1306118 Share on other sites More sharing options...
Jogga Posted January 10, 2012 Author Share Posted January 10, 2012 **update** the result above is returning the first character only (i have replaced the data with test in the json example above). Quote Link to comment https://forums.phpfreaks.com/topic/254723-jsonmulti-dimensional-array-help-needed/#findComment-1306144 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.