Returning JSON from a PHP Script

前端 未结 18 1473
南方客
南方客 2020-11-21 04:59

I want to return JSON from a PHP script.

Do I just echo the result? Do I have to set the Content-Type header?

18条回答
  •  梦谈多话
    2020-11-21 05:51

    Try json_encode to encode the data and set the content-type with header('Content-type: application/json');.

提交回复
热议问题