Is there anyway to read from STDIN with PHP that is non blocking:
STDIN
I tried this:
stream_set_blocking(STDIN, false); echo fread(STDIN, 1);
Just a notice, that non blocking STDIN working, now.