yii - PHP: write in php://input -
i know how write in "php://input".
actually know if can use stream superglobal.
example $_post
file1: $_post['param'] = "test"; file2: $param = $_post['param'];
what want
file1: ????????????? file2: $param = file_get_contents('php://input');
do need throw post request file1 file2?
thanks read me :)
have nice day
michaƫl s.
php://input read-only stream allows read raw data request body. (php docs)
maybe, find unix-sockets, or shared memory useful?
Comments
Post a Comment