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.

I have a JSON string that I would like to include as a value in a larger JSON object that I am creating from an array. How can I create the larger JSON object without php escaping the string, and without having to decode the previously encoded string?

For example, if my JSON string is:

$encoded_already = '{"encoded_key": "encoded_value"}';

And I would like to include it in my array and json_encode() it:

$new_array = array(
    "some_other_key" => $some_value,
    "premade_data" => $encoded_already
);
$output = json_encode($new_array);

but I want to have the $encoded_already string be included as actual JSON, not just an escaped string.

share|improve this question

1 Answer

up vote 2 down vote accepted

Here's an idea: place a token as an attribute value and then use str_replace on it.

Works only if $token doesn't appear anywhere in your JSON.

$token = '%%%';
$output = str_replace( '"' . $token . '"', $encoded_already, json_encode( array(
    "some_other_key" => $some_value,
    "premade_data" => $token
) );
share|improve this answer
1  
+1 beat me to it. – iambriansreed Jun 22 '12 at 2:59
upvote for the great mind that thinks alike :) – editor Jun 22 '12 at 2:59
2  
Added $new_array =. :) You might want to replace '%%%' with uniqid(). – iambriansreed Jun 22 '12 at 3:00
OK, I was thinking about doing that but wasn't sure if there was a better way. That's going to be annoying with multiple strings though... – jburns20 Jun 22 '12 at 3:01
sometimes dumb answers are the smart ones – editor Jun 22 '12 at 3:03

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.