A little inspection of the source code yields the answers.
First, yes, you're limited to one read per handle because the underlying stream does not implement the seek handler:
php_stream_ops php_stream_input_ops = {
    php_stream_input_write,
    /* ... */
    "Input",
    NULL, /* seek */
    /* ... */
};
Second, the read handler has two different behaviors depending on whether the "POST data" has been read and stored in SG(request_info).raw_post_data.
if (SG(request_info).raw_post_data) {
    read_bytes = SG(request_info).raw_post_data_length - *position;
    /* ...*/
    if (read_bytes) {
        memcpy(buf, SG(request_info).raw_post_data + *position, read_bytes);
    }
} else if (sapi_module.read_post) {
    read_bytes = sapi_module.read_post(buf, count TSRMLS_CC);
    /* ... */
} else {
    stream->eof = 1;
}
So we have three possibilities here:
- The request body data has already been read and stored in SG(request_info).raw_post_data. In this case, since the data is stored, we can open and read multiple handles forphp://input.
- The request body data has been read, but its contents were not stored anywhere. php://inputcannot give us anything.
- The request data hasn't been read yet. This means we can open php://inputand read it only once.
NOTE: What follows is the default behavior. Different SAPIs or additional extensions may change this behavior.
In case of POST requests, PHP defines a different POST reader and a POST handler depending on the content-type.
Case 1. This happens when we have a POST request:
- With content-type application/x-www-form-encoded.sapi_activatedetects a POST request with a conten-type and callssapi_read_post_data. This detects the content-type and defines the POST reader/handler pair. The POST reader issapi_read_standard_form_data, which is immediately called and just copies the request body toSG(request_info).post_data. The default post readerphp_default_post_readeris then called, which fills$HTTP_RAW_POST_DATAif the ini settingalways_populate_post_datais set and then copiesSG(request_info).post_datatoSG(request_info).raw_post_dataand clears the first. The call to the handler doesn't matter here and is deferred until the superglobals are built (which may not happen, in case JIT is activated and the superglobals are not used).
- With an unrecognized or inexistent content-type. In this case, there's no defined POST reader and handler. Both cases end up in php_default_post_readerwithout any data read. Since this is a POST request and there's no reader/handler pair,sapi_read_standard_form_datawill be called. This is the same function as the read handler the content typeapplication/x-www-form-encoded, so all the data gets swallowed toSG(request_info).post_data. The only differences from now on is that$HTTP_RAW_POST_DATAis always populated (no matter the value ofalways_populate_post_data) and there's no handler for building the superglobals.
Case 2. This happens when we have a form request with content-type "multipart/form-data". The POST reader is NULL, so the handler, which is rfc1867_post_handler acts as a mixed reader/handler. No data whatsoever is read in the sapi_activate phase. The function sapi_handle_post is eventually called in a later phase, which, in its turn calls the POST handler. rfc1867_post_handler reads the request data, populates POST and FILES, but leaves nothing in SG(request_info).raw_post_data.
Case 3. This last case takes place with requests different from POST (e.g. PUT). php_default_post_reader is directly called. Because the request is not a POST request, the data is swallowed by sapi_read_standard_form_data. Since no data is read, there's not anything left to be done.