2012-11-01 PHPで標準入力を読む PHP PHPの標準入力は、CGIかコマンドラインかで異なる。 http://www.php.net/manual/ja/function.file-get-contents.php#110297 CGIのときは php://input を使う <? $input = file_get_contents("php://input"); ?> コマンドラインのときは php://stdin を使う <? $input = file_get_contents("php://stdin"); ?>