After the php associative array is sorted and output to the front end using json_encode, why does the order change?

WBOY
Release: 2023-03-02 06:16:01
Original
3338 people have browsed it

After php associative array is sorted, json_encode is used to output it to the front end. Why does the order change?
This is the sorted array written to the file using the file_put_contents function. The order is correct.

After the php associative array is sorted and output to the front end using json_encode, why does the order change?
This is the data output to the front desk using echo json_encode(), and the order has changed.

After the php associative array is sorted and output to the front end using json_encode, why does the order change?

Why? I can't figure it out, can anyone explain it?

Reply content:

After php associative array is sorted, json_encode is used to output it to the front end. Why does the order change?
This is the sorted array written to the file using the file_put_contents function. The order is correct.

After the php associative array is sorted and output to the front end using json_encode, why does the order change?
This is the data output to the front desk using echo json_encode(), and the order has changed.

After the php associative array is sorted and output to the front end using json_encode, why does the order change?

Why? I can't figure it out, can anyone explain it?

Although php arrays are ordered, JavaScript or Object in the json standard does not guarantee the order. Any change of the key by the json library is standard-compliant behavior. The processing of key order in any specific implementation (retention/sorting/shuffle ) should not be relied on

If you want to ensure the order, it is recommended to modify the data structure and use "array of object" to implement it

<code>{
  cnt: [
    {id: "12", value:"1"},
    {id: "03", value:"1"},
    ...</code>
Copy after login

json is unordered


I have encountered similar problems before. You can output the value of json_encode in the form of a string. The front end can get the string and convert it yourself.

In Chrome, this does happen

Even if you output the key => value structure in the background, the order of json_encode is normal

However, Chrome will sort, even "string KEY" and "numeric KEY", they will all be arranged in positive order

So the final solution is

array_value

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!