Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there an option to force the

json_encode(array("a", 2, 5));

to produce

{"0":"a", "1":2, "2":5};

I think doing

$a =  array("dummy","a", 2, 5);
unset($a[0]);
echo json_encode($a);

works, but is there a cleaner way

edit:

Sry I actually need

$a =  array (array("a"), array(2,3), array(5,6,7));
echo json_encode($a, JSON_FORCE_OBJECT);

to give:

{"0":["a"],"1":[2 , 3],"2":[5, 6, 7]}

instead of

{"0":{"0":"a"},"1":{"0":2,"1":3},"2":{"0":5,"1":6,"2":7}}

any idea?

seems

$a =  array ("", array("a"), array(2,3), array(5,6,7));
unset($a[0]);
echo json_encode($a);

is the only way..

share|improve this question

1 Answer

up vote 2 down vote accepted

Try this:

json_encode( (object) array(

  array( "a" ), array( 2, 3 ), array( 5, 6, 7 )

) );
share|improve this answer
The "array" implementation in PHP is nicer than in a lot of languages, including JavaScript, and Ruby prior to 1.9. The "array" type in PHP is a combination of numerically indexed arrays and associative key-value map / hash / dict functionality. Keys consisting of digits are converted to integers. json_encode() assumes you want arrays with sequential, zero-based integer keys to be converted to JS arrays. Other PHP arrays are converted to JS objects (which munge object and map functionality). You can request to have a sequentially numerically indexed array converted to a JS object. – JMM Aug 4 '12 at 17:07
@Ignacio Also, in case this is what you're driving at, JS doesn't have integer "keys" for objects -- it converts them to strings. – JMM Aug 4 '12 at 17:09
perfect, my need is actually is little more complicated, sry for the edit – xcx Aug 4 '12 at 21:47
Ok, revised my answer. By the way, my comments were in reply to a comment by an "Ignacio". I forget to @ reply him in the first one, then he deleted the comment. Just wanted to let you know it wasn't directed at you. – JMM Aug 4 '12 at 22:26

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.