What is the relevance of php://input in the following snippet, and what is it used for?
php://input
$json_string = GPTake(array(\'json_string\')); $handle = fop
php:// is a scheme wrapper around various input/output streams that PHP supports. You can read up for here: http://www.php.net/manual/en/wrappers.php.php.
php://
Specifically, php://input allows you to read the input stream directly.