file_get_contents('php://input') always returns an empty string

后端 未结 12 2215
遥遥无期
遥遥无期 2020-12-09 09:04

I\'m building a PHP RESTful API, following this tutorial. The following function, which should return the data sent with the request when the \'put\' method is used, returns

12条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-09 09:55

    On Windows the combination of 'single "double" quotes' does not seem to work. Use escape for quotes in your json data (as below) & it should work

    curl -X PUT -d "{\"address\":\"Sunset Boulevard\"}" http://localhost/clients/ryan
    

提交回复
热议问题