ORM::__isset PHP Method

__isset() public method

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