ManaPHP\Store\AdapterInterface::exists PHP 메소드

exists() 공개 메소드

Checks whether a specified id exists in the store.
public exists ( string $id ) : boolean
$id string
리턴 boolean
    public function exists($id);

Usage Example

예제 #1
0
파일: Store.php 프로젝트: manaphp/manaphp
 /**
  * Check if id exists
  *
  * @param string $key
  *
  * @return bool
  */
 public function exists($key)
 {
     return $this->adapter->exists($this->_prefix . $key);
 }