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


PHP Dept::toArray方法代码示例

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


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

示例1: save

 /**
  * Simpan Departement
  * (New Departement)
  *
  * @return mixed
  */
 public function save()
 {
     $this->departement->name = Input::get('name');
     $this->departement->info = Input::get('info');
     $this->departement->uuid = uniqid('New_');
     $this->departement->createby_id = Auth::user()->id;
     $this->departement->lastupdateby_id = Auth::user()->id;
     $this->departement->created_at = new Carbon();
     $this->departement->updated_at = new Carbon();
     $saved = $this->departement->save() ? true : false;
     return Response::json(array('success' => $saved, 'results' => $this->departement->toArray()))->setCallback();
 }
开发者ID:emayk,项目名称:ics,代码行数:18,代码来源:impEloquent.php

示例2: toArray

 /**
  * Exports the object as an array.
  *
  * You can specify the key type of the array by passing one of the class
  * type constants.
  *
  * @param     string  $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  *                    BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  *                    Defaults to BasePeer::TYPE_PHPNAME.
  * @param     boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to TRUE.
  * @param     array $alreadyDumpedObjects List of objects to skip to avoid recursion
  * @param     boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
  *
  * @return    array an associative array containing the field names (as keys) and field values
  */
 public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
 {
     if (isset($alreadyDumpedObjects['DeptMetadata'][$this->getPrimaryKey()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['DeptMetadata'][$this->getPrimaryKey()] = true;
     $keys = DeptMetadataPeer::getFieldNames($keyType);
     $result = array($keys[0] => $this->getDeptBId(), $keys[1] => $this->getName(), $keys[2] => $this->getId(), $keys[3] => $this->getCreatedAt(), $keys[4] => $this->getUpdatedAt());
     if ($includeForeignObjects) {
         if (null !== $this->aDept) {
             $result['Dept'] = $this->aDept->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
     }
     return $result;
 }
开发者ID:therealchiko,项目名称:getchabooks,代码行数:30,代码来源:BaseDeptMetadata.php

示例3: toArray

 /**
  * Exports the object as an array.
  *
  * You can specify the key type of the array by passing one of the class
  * type constants.
  *
  * @param     string  $keyType (optional) One of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  *                    BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  *                    Defaults to BasePeer::TYPE_PHPNAME.
  * @param     boolean $includeLazyLoadColumns (optional) Whether to include lazy loaded columns. Defaults to TRUE.
  * @param     array $alreadyDumpedObjects List of objects to skip to avoid recursion
  * @param     boolean $includeForeignObjects (optional) Whether to include hydrated related objects. Default to FALSE.
  *
  * @return    array an associative array containing the field names (as keys) and field values
  */
 public function toArray($keyType = BasePeer::TYPE_PHPNAME, $includeLazyLoadColumns = true, $alreadyDumpedObjects = array(), $includeForeignObjects = false)
 {
     if (isset($alreadyDumpedObjects['Course'][$this->getPrimaryKey()])) {
         return '*RECURSION*';
     }
     $alreadyDumpedObjects['Course'][$this->getPrimaryKey()] = true;
     $keys = CoursePeer::getFieldNames($keyType);
     $result = array($keys[0] => $this->getNum(), $keys[1] => $this->getNbSections(), $keys[2] => $this->getName(), $keys[3] => $this->getDeptId(), $keys[4] => $this->getSpideredAt(), $keys[5] => $this->getShallowSpideredAt(), $keys[6] => $this->getTouched(), $keys[7] => $this->getBId(), $keys[8] => $this->getBookstoreType(), $keys[9] => $this->getId(), $keys[10] => $this->getCreatedAt(), $keys[11] => $this->getUpdatedAt());
     if ($includeForeignObjects) {
         if (null !== $this->aDept) {
             $result['Dept'] = $this->aDept->toArray($keyType, $includeLazyLoadColumns, $alreadyDumpedObjects, true);
         }
         if (null !== $this->collSections) {
             $result['Sections'] = $this->collSections->toArray(null, true, $keyType, $includeLazyLoadColumns, $alreadyDumpedObjects);
         }
     }
     return $result;
 }
开发者ID:therealchiko,项目名称:getchabooks,代码行数:33,代码来源:BaseCourse.php


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