示例#1
0
文件: Record.php 项目: sigma-z/dive
 /**
  * @param  string $fieldName
  * @return bool
  */
 public function isFieldModified($fieldName)
 {
     $this->_table->throwExceptionIfFieldNotExists($fieldName);
     return array_key_exists($fieldName, $this->_modifiedFields);
 }