Dieser Artikel stellt vor, wie man HTTP POST-Anfragen in der Programmiersprache PHP empfängt.
<?php
// HTTP POST dev
file_put_contents("_hoge.txt" , $_POST["html"]) ;
$ curl https://exaple.com/ -X POST -d "html=hogehogehoge"
$ cat _hoge.txt
hogehogehoge[