Jean-Baptiste
Well-known member
Hello,
To return JSON responses from my Controller, I'm using the following code :
What is the good way to return JSON ?
Thanks
To return JSON responses from my Controller, I'm using the following code :
Code:
header('Content-Type: application/json');
echo json_encode($data);
die();
What is the good way to return JSON ?
Thanks