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


PHP Properties::save方法代码示例

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


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

示例1: saveTo

 public function saveTo($arr, $newdir)
 {
     if (!file_exists($newdir)) {
         mkdir($newdir, Magmi_Config::getInstance()->getDirMask());
     }
     $val = parent::save($newdir . DIRSEP . basename($this->_confname));
     $this->_basedir = $newdir;
     $this->_confname = $newdir . DIRSEP . basename($this->_confname);
     return $val;
 }
开发者ID:brettwalker1,项目名称:magmi-git,代码行数:10,代码来源:magmi_config.php

示例2: addProperty

 protected function addProperty($data)
 {
     $userId = Yii::app()->user->getState('id');
     $propertyModel = new Properties();
     $user2PropertyModel = new User2property();
     $userModel = new \User();
     $propertyModel->unsetAttributes();
     $data['edt'] = new CDbExpression('NOW()');
     $propertyModel->setAttributes($data);
     $result = $propertyModel->save();
     if (!$result) {
         return false;
     }
     $userName = Yii::app()->user->getState('firstname') . ' ' . Yii::app()->user->getState('lastname');
     $user2PropertyModel->unsetAttributes();
     $user2PropertyModel->setAttributes(array('userId' => $userId, 'propertyId' => $propertyModel->getAttribute('id'), 'access' => UserAccessTable::OWNER, 'status' => UserAccessTable::STATUS_ACTIVE, 'color' => 'type1', 'bookingName' => $userName));
     $result = $user2PropertyModel->save();
     if (!$result) {
         return false;
     }
     $userModel->unsetAttributes();
     $oldId = $userModel->findByPk($userId);
     $oldId = $oldId->attributes['property_id'];
     $result = $userModel->updateByPk($userId, array('property_id' => $propertyModel->getAttribute('id')));
     if (!$result) {
         return false;
     }
     $userControl = new \userControl();
     $userControl->update();
     $outputArray = array('oldId' => $oldId, 'newId' => $propertyModel->getAttribute('id'));
     return $outputArray;
 }
开发者ID:salem-dev-acc,项目名称:yiiapp,代码行数:32,代码来源:AppController.php

示例3: save

 public function save($file)
 {
     parent::save($file);
 }
开发者ID:dbarkman,项目名称:BotsFeedUsFramework,代码行数:4,代码来源:BotsFeedUsProperties.controller.php


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