Пример #1
0
 public function testApiPeek_ReturnsWholeData_WhenLengthGreaterThanBufferLengthIsPassed()
 {
     $length = 100;
     $result = $this->buffer->peek($length);
     $this->assertSame($this->initialString, $result);
     $this->assertSame($this->initialString, (string) $this->buffer);
 }
Пример #2
0
 /**
  *
  */
 private function writeEnd()
 {
     do {
         try {
             $sent = fwrite($this->resource, $this->buffer->peek());
             $this->buffer->remove($sent);
         } catch (Error $ex) {
             $sent = 0;
         } catch (Exception $ex) {
             $sent = 0;
         }
     } while (is_resource($this->resource) && $sent > 0 && !$this->buffer->isEmpty());
 }