📜  file_get_contents('php input') - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:09.148000             🧑  作者: Mango

代码示例2
Actually php://input allows you to read raw POST data.

It is a less memory intensive alternative to $HTTP_RAW_POST_DATA and does not need any special php.ini directives.

php://input is not available with enctype="multipart/form-data".

Reference: http://php.net/manual/en/wrappers.php.php