ORM::__isset PHP 메소드

__isset() 공개 메소드

public __isset ( $key )
    public function __isset($key)
    {
        return $this->offsetExists($key);
    }

Usage Example

예제 #1
0
파일: paris.php 프로젝트: florinp/dexonline
 /**
  * Magic isset method, allows isset($model->property) to work correctly.
  *
  * @param  string $property
  * @return bool
  */
 public function __isset($property)
 {
     return $this->orm->__isset($property);
 }
ORM