I have List of IDs in JSON
Here it is: https://temp.9animetv.live/api.php
it look like this
{ "result": [
548915,
505031,
28967,
520928,
441762,
381418,
61650,
249457,
535995,
550023,
and more.. and more.. and more..
]
}
I want to change it to be like this
{
"result": [
{"id": 548915,},
{"id": 505031,},
{"id": 28967,},
{"id": 28967,},
{"id": 28967,}
]
}
How to do that? Am using PHP
I have Tried
To change it to Array using Json_decode But still haven't figured out a way to do as I expected