PHPDaemon\Applications\CGIRequest::stdin PHP Method

stdin() public method

Called when new piece of request's body is received.
public stdin ( string $c ) : void
$c string Piece of request's body.
return void
    public function stdin($c)
    {
        if ($c === '') {
            $this->onWrite($this->proc);
        } else {
            $this->proc->write($c);
        }
    }