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


PHP ORM::find_many方法代码示例

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


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

示例1: find_many

 /**
  * Wrap Idiorm's find_many method to return
  * an array of instances of the class associated
  * with this wrapper instead of the raw ORM class.
  */
 public function find_many()
 {
     return array_map(array($this, '_create_model_instance'), parent::find_many());
 }
开发者ID:ahtesham-quraish,项目名称:memory-color-game,代码行数:9,代码来源:paris.php

示例2: find_many

 /**
  * Wrap Idiorm's find_many method to return
  * an array of instances of the class associated
  * with this wrapper instead of the raw ORM class.
  *
  * @return Array
  */
 public function find_many()
 {
     $results = parent::find_many();
     foreach ($results as $key => $result) {
         $results[$key] = $this->_create_model_instance($result);
     }
     return $results;
 }
开发者ID:florinp,项目名称:dexonline,代码行数:15,代码来源:paris.php

示例3: find_many

 /**
  * Wrap Idiorm's find_many method to return
  * an array of instances of the class associated
  * with this wrapper instead of the raw ORM class.
  */
 public function find_many($as_array = false)
 {
     $result = parent::find_many($as_array);
     if ($as_array) {
         return $result;
     }
     return array_map(array($this, '_create_model_instance'), $result);
 }
开发者ID:JerryMaheswara,项目名称:crawler,代码行数:13,代码来源:paris.php


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