How to access POST data in PHP?

后端 未结 7 1130
囚心锁ツ
囚心锁ツ 2020-12-13 19:43

I need to write a PHP page which would accept an XML document sent over a POST request like this:

POST /mypage.php HTTP/1.1
Host: myhost.com
Content-Type: ap         


        
7条回答
  •  庸人自扰
    2020-12-13 20:28

    You probably want to use the PHP input. Something like

    $postText = trim(file_get_contents('php://input'));
    

提交回复
热议问题