Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
{"email":"test@example.com","timestamp":1346345321,"newsletter":{"newsletter_user_list_id":"3648511","newsletter_id":"613267","newsletter_send_id":"657025"},"category":["EST_TEST","Newsletter"],"event":"open"}

I'm having trouble parsing this string. It's from Sendgrid's Event API, it seems to be "almost" JSON, but json_decode won't work. My goal is to get the data into an array, then into a MySQL table. I'm not asking anyone to write the code for me, just point me toward the correct method. Do I use the explode function, then json_decode?. (I'm slowly teaching myself PHP, sorry if the question is not clear)

share|improve this question
Why do you say "almost"? It seems valid according to JSONlint. Maybe there is some code or other details you might want to share? – mario Sep 1 '12 at 15:09
2  
It looks like JSON to me - have you tried plugging the result into some online json validator to be sure? Perhaps its a bug on their part if it is not returning proper json. – Chris Sep 1 '12 at 15:10
possible duplicate of PHP decoding json – mario Sep 1 '12 at 15:10
Thanks for sharing JSONlint, I will go back to coding and see if I can figure it out, I was able to use json_decode successfully on a short json string but not the above (it gave me NULL), I will try again. Thanks again. – elong Sep 1 '12 at 15:25

2 Answers

up vote 0 down vote accepted

I think you're not using the json_decode function with $assoc = true, so you're getting an object rather than an array

$json = '{"email":"test@example.com","timestamp":1346345321,"newsletter":{"newsletter_user_list_id":"3648511","newsletter_id":"613267","newsletter_send_id":"657025"},"category":["EST_TEST","Newsletter"],"event":"open"}';

var_dump(json_decode($json, true));

You'll get the result as array;

share|improve this answer

Use serialize to insert A json / Array Value Into A Mysql Table Use unserialize To Chang The serialized Value In To Json/Array In php

    <?php
$rows = '{"email":"test@example.com","timestamp":1346345321,"newsletter":{"newsletter_user_list_id":"3648511","newsletter_id":"613267","newsletter_send_id":"657025"},"category":["EST_TEST","Newsletter"],"event":"open"}';
/// Inserting in db Below
$rows = serialize($rows);
print_r($rows);
/// change serialized value to json or array
$rows =  unserialize($rows);
print_r($rows);
?> 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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