Skip to content
Advertisement

How to create JSON root object with php

My current output of my PHP script looks like this:

JavaScript

but I want it to have a “users:” root object (or whatever it’s called):

JavaScript

I don’t really know how to achieve that because a lot of stuff I saw on the internet looks a lot different from my php script.

I think it is only a small change, I don’t want to re-write my whole script.

This is what my php script looks like:

JavaScript

What line do I have to add so it gives me the “users” root?

Advertisement

Answer

Just wrap your existing data in an associative array:

JavaScript

Output:

JavaScript

Demo on 3v4l.org

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement