offsetExists() 공개 메소드

Tests if row exists.
public offsetExists ( $key ) : boolean
리턴 boolean
예제 #1
0
 /**
  * Tests if row exists.
  *
  * @param mixed $key Row's primary key to check for.
  * @return bool
  */
 public function offsetExists($key)
 {
     return $this->selection->offsetExists($key);
 }