Fernando chucre wrote:
> I build a patch for wrapper php fopen. In this patch I create a way for
> the script access the filedescriptos opened by process. Ex:
I assume this is non-portable anyway so you could also simply use
something like "/dev/fd/7" instead of "php://fd/7" if you're on Linux or
something similar.
You could also use
http://php.net/manual/function.stream-wrapper-register.php if you want
to hide the implementation from your application.
I don't think the core should be bothered with handling this rare case.
Regards,
- Chris