当前位置: 首页>>代码示例>>PHP>>正文


PHP BaseActiveRecord::canSetProperty方法代码示例

本文整理汇总了PHP中yii\db\BaseActiveRecord::canSetProperty方法的典型用法代码示例。如果您正苦于以下问题:PHP BaseActiveRecord::canSetProperty方法的具体用法?PHP BaseActiveRecord::canSetProperty怎么用?PHP BaseActiveRecord::canSetProperty使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在yii\db\BaseActiveRecord的用法示例。


在下文中一共展示了BaseActiveRecord::canSetProperty方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: populateRecord

 /**
  * Populates an active record object using a row of data from the database/storage.
  *
  * This is an internal method meant to be called to create active record objects after
  * fetching data from the database. It is mainly used by [[ActiveQuery]] to populate
  * the query results into active records.
  *
  * When calling this method manually you should call [[afterFind()]] on the created
  * record to trigger the [[EVENT_AFTER_FIND|afterFind Event]].
  *
  * @param BaseActiveRecord $record the record to be populated. In most cases this will be an instance
  * created by [[instantiate()]] beforehand.
  * @param array $row attribute values (name => value)
  */
 public static function populateRecord($record, $row)
 {
     foreach ($record->attributes() as $name) {
         $record->setAttribute($name, isset($row[$name]) ? $row[$name] : null);
         if (isset($row[$name]) && $record->canSetProperty($name)) {
             $record->{$name} = $row[$name];
         }
     }
     $record->setOldAttributes($record->attributes);
 }
开发者ID:e96,项目名称:yii2-redis,代码行数:24,代码来源:ActiveRecord.php

示例2: populateRecord

 /**
  * Populates an active record object using a row of data from the database/storage.
  *
  * This is an internal method meant to be called to create active record objects after
  * fetching data from the database. It is mainly used by [[ActiveQuery]] to populate
  * the query results into active records.
  *
  * When calling this method manually you should call [[afterFind()]] on the created
  * record to trigger the [[EVENT_AFTER_FIND|afterFind Event]].
  *
  * @param BaseActiveRecord $record the record to be populated. In most cases this will be an instance
  * created by [[instantiate()]] beforehand.
  * @param array $row attribute values (name => value)
  */
 public static function populateRecord($record, $row)
 {
     $columns = array_flip($record->attributes());
     foreach ($row as $name => $value) {
         if (isset($columns[$name])) {
             $record->_attributes[$name] = $value;
         } elseif ($record->canSetProperty($name)) {
             $record->{$name} = $value;
         }
     }
     $record->_oldAttributes = $record->_attributes;
 }
开发者ID:selenzo,项目名称:bsuir,代码行数:26,代码来源:BaseActiveRecord.php

示例3: canSetProperty

 public function canSetProperty($name, $checkVars = true)
 {
     return $this->_relation->canSetProperty($name, $checkVars) || parent::canSetProperty($name, $checkVars);
 }
开发者ID:mdmsoft,项目名称:yii2-ar-extended,代码行数:4,代码来源:ExtendedBehavior.php


注:本文中的yii\db\BaseActiveRecord::canSetProperty方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。