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


PHP ArrayObject::toArray方法代码示例

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


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

示例1: getPresentationModel

 /**
  * Returns the topics table as a presentation model (array of arrays containing
  * information about each topic, suitable for use by a view) by mirroring
  * the domain model into a presentation model.  The presentation model can be modified
  * to support the needs of a view, without mangling the raw, real underlying table data.
  * STAGE 4: Apply business logic to create a presentation model for the view.
  * @return array of ArrayObjects (containing topic info) indexed by topic id
  */
 public static function getPresentationModel()
 {
     if (self::$_presentationModel === null) {
         foreach (self::getDomainModel() as $row) {
             $row = new ArrayObject($row->toArray(), ArrayObject::ARRAY_AS_PROPS);
             $row->user = ZFDemoModel_Users::getById($row->user_id);
             self::$_presentationModel[$row->topic_id] = $row;
             /////////////////////////////
             // ==> SECTION: l10n <==
             // create a Locale object for the owner of this post (not the user of this request)
             $postLocale = new Zend_Locale($row->user->locale);
             $row->country = ZFModule_Forum::getCountry($postLocale->getRegion());
             $userLocale = ZFModule_Forum::getUserLocale();
             // locale of the user of this request
             $userLocale = Zend_Registry::get('userLocale');
             $offset = ZFModule_Forum::getTimeOffset();
             if ($row->modification_time != $row->creation_time) {
                 $row->modification_time = new Zend_Date($row->modification_time, $userLocale);
                 $row->modification_time->addTimestamp($offset);
                 // express date/time in user's local timezone
             } else {
                 $row->modification_time = '';
             }
             $row->creation_time = new Zend_Date($row->creation_time, $userLocale);
             $row->creation_time->addTimestamp($offset);
             // express date/time in user's local timezone
         }
     }
     return self::$_presentationModel;
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:38,代码来源:Topics.php

示例2: getPresentationModel

 /**
  * Returns the topics table as a presentation model (array of arrays containing
  * information about each topic, suitable for use by a view) by mirroring
  * the domain model into a presentation model.  The presentation model can be modified
  * to support the needs of a view, without mangling the raw, real underlying table data.
  * STAGE 4: Apply business logic to create a presentation model for the view.
  * @return array of ArrayObjects (containing topic info) indexed by topic id
  */
 public static function getPresentationModel()
 {
     if (self::$_presentationModel === null) {
         foreach (self::getDomainModel() as $row) {
             $row = new ArrayObject($row->toArray(), ArrayObject::ARRAY_AS_PROPS);
             $row->user = ZFDemoModel_Users::getById($row->user_id);
             self::$_presentationModel[$row->topic_id] = $row;
         }
     }
     return self::$_presentationModel;
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:19,代码来源:Topics.php

示例3: testInitialDataEqualsArrayRepresentation

 public function testInitialDataEqualsArrayRepresentation()
 {
     $initialData = array(5 => 'foo', 'bar');
     $arrayObject = new ArrayObject($initialData);
     $this->assertSame($initialData, $arrayObject->toArray());
 }
开发者ID:nathanklick,项目名称:collections,代码行数:6,代码来源:ArrayObjectTest.php

示例4: count

        return array_search($find, $this->array);
    }
    function count()
    {
        return count($this->array);
    }
    function append($val)
    {
        return array_push($this->array, $val);
    }
    function prepend($val)
    {
        return array_unshift($this->array, $val);
    }
    function slice($offset, $lenth = null)
    {
        return new ArrayObject(array_slice($this->array, $offset, $lenth));
    }
    function rand()
    {
        return $this->array[array_rand($this->array, 1)];
    }
    function toArray()
    {
        return $this->array;
    }
}
$ar = new ArrayObject(['a', 'b', 'c']);
$ar->insert(1, '_');
var_dump($ar->toArray());
开发者ID:ruziyi,项目名称:framework,代码行数:30,代码来源:ArrayObject.php

示例5: getPostsByTopicId

 /**
  * Returns the posts of a topic as a presentation model (array of arrays containing
  * information about each post, suitable for use by a view) by mirroring the domain model
  * into a presentation model.  The presentation model can be modified to support
  * the needs of a view, without mangling the raw, real underlying table data.
  * STAGE 4: Apply business logic to create a presentation model for the view.
  * @return array of ArrayObject (post info)
  */
 public static function getPostsByTopicId($topicId)
 {
     if (!isset(self::$_presentationModel[$topicId])) {
         $posts = array();
         foreach (self::getDomainModel($topicId) as $row) {
             $row = new ArrayObject($row->toArray(), ArrayObject::ARRAY_AS_PROPS);
             $row->user = ZFDemoModel_Users::getById($row->user_id);
             $posts[] = $row;
             /////////////////////////////
             // ==> SECTION: l10n <==
             // create a Locale object for the owner of this post (not the user of this request)
             $postLocale = new Zend_Locale($row->user->locale);
             $row->country = ZFModule_Forum::getCountry($postLocale->getRegion());
             $userLocale = ZFModule_Forum::getUserLocale();
             // locale of the user of this request
             $offset = ZFModule_Forum::getTimeOffset();
             if ($row->modification_time != $row->creation_time) {
                 $row->modification_time = new Zend_Date($row->modification_time, $userLocale);
                 $row->modification_time->addTimestamp($offset);
                 // express date/time in user's local timezone
             } else {
                 $row->modification_time = '';
             }
             $row->creation_time = new Zend_Date($row->creation_time, $userLocale);
             $row->creation_time->addTimestamp($offset);
             // express date/time in user's local timezone
         }
         // cache result only for duration of this request
         self::$_presentationModel[$topicId] = $posts;
     }
     return self::$_presentationModel[$topicId];
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:40,代码来源:Posts.php

示例6: getPostsByTopicId

 /**
  * Returns the posts of a topic as a presentation model (array of arrays containing
  * information about each post, suitable for use by a view) by mirroring the domain model
  * into a presentation model.  The presentation model can be modified to support
  * the needs of a view, without mangling the raw, real underlying table data.
  * STAGE 4: Apply business logic to create a presentation model for the view.
  * @return array of ArrayObject (post info)
  */
 public static function getPostsByTopicId($topicId)
 {
     if (!isset(self::$_presentationModel[$topicId])) {
         $posts = array();
         foreach (self::getDomainModel($topicId) as $row) {
             $row = new ArrayObject($row->toArray(), ArrayObject::ARRAY_AS_PROPS);
             $row->user = ZFDemoModel_Users::getById($row->user_id);
             $posts[] = $row;
         }
         // cache result only for duration of this request
         self::$_presentationModel[$topicId] = $posts;
     }
     return self::$_presentationModel[$topicId];
 }
开发者ID:jorgenils,项目名称:zend-framework,代码行数:22,代码来源:Posts.php


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