Returning JSON from a PHP Script

前端 未结 18 1442
南方客
南方客 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:41

    Set the content type with header('Content-type: application/json'); and then echo your data.

提交回复
热议问题