lithium\net\socket\Stream::eof PHP Method

eof() public method

Determines if the socket resource is at EOF.
public eof ( ) : boolean
return boolean Returns `true` if resource pointer is at its EOF, `false` otherwise.
    public function eof()
    {
        return is_resource($this->_resource) ? feof($this->_resource) : true;
    }

Usage Example

Beispiel #1
0
 public function testWriteAndRead()
 {
     $stream = new Stream($this->_testConfig);
     $result = $stream->open();
     $data = "GET / HTTP/1.1\r\n";
     $data .= "Host: localhost\r\n";
     $data .= "Connection: Close\r\n\r\n";
     $this->assertTrue($stream->write($data));
     $result = $stream->eof();
     $this->assertFalse($result);
     $result = $stream->read();
     $this->assertPattern("/^HTTP/", $result);
 }
All Usage Examples Of lithium\net\socket\Stream::eof