offsetExists() публичный Метод

This method is required by the interface \ArrayAccess.
public offsetExists ( $offset ) : boolean
Результат boolean
Пример #1
0
 public function testOffsetExists()
 {
     $request = new THttpRequest();
     $request->init(null);
     // should not exists
     self::assertFalse($request->offsetExists(0));
 }