本文整理汇总了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());
}
示例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;
}
示例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);
}