http://qs1969.pair.com?node_id=1130765


in reply to Preserve the order in JSON

is there a way to preserve the order

Not exactly, but JSON can sort JSON object keys. You need to call $json->canonical() before $json->encode($data). Note that this adds some significant overhead.

The big question remains: Why do you need sorted keys in the object?

Alexander

--
Today I will gladly share my knowledge and experience, for there are no sweeter words than "I told you so". ;-)

Replies are listed 'Best First'.
Re^2: Preserve the order in JSON (overhead)
by tye (Sage) on Dec 28, 2016 at 19:34 UTC
    Note that this adds some significant overhead.

    Have you measured it? I have. It is far from "significant" unless you have at least one hash that holds a very large number of keys. I find such to be pretty rare in the JSON I've had to deal with.

    I have found much more overhead resulted from the pain of having to deal with random order of keys in JSON, making comparisons or just visual searching much more difficult. And overhead to human processing costs a ton more than overhead to computer processing, IME.

    - tye