本文整理匯總了PHP中CI_DB_result::result方法的典型用法代碼示例。如果您正苦於以下問題:PHP CI_DB_result::result方法的具體用法?PHP CI_DB_result::result怎麽用?PHP CI_DB_result::result使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類CI_DB_result
的用法示例。
在下文中一共展示了CI_DB_result::result方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: _process_query
/**
* Process Query
*
* Converts a query result into an array of objects.
* Also updates this object
*
* @ignore
* @param CI_DB_result $query
*/
protected function _process_query($query)
{
if ($query->num_rows() > 0) {
// Populate all with records as objects
$this->all = array();
$this->_to_object($this, $query->row());
// don't bother recreating the first item.
$index = $this->all_array_uses_ids && isset($this->id) ? $this->id : 0;
$this->all[$index] = $this->get_clone();
if ($query->num_rows() > 1) {
$model = get_class($this);
$first = TRUE;
foreach ($query->result() as $row) {
if ($first) {
$first = FALSE;
continue;
}
$item = new $model();
$this->_to_object($item, $row);
if ($this->all_array_uses_ids && isset($item->id)) {
$this->all[$item->id] = $item;
} else {
$this->all[] = $item;
}
}
}
// remove instantiations
$this->_instantiations = NULL;
// free large queries
if ($query->num_rows() > $this->free_result_threshold) {
$query->free_result();
}
} else {
// Refresh stored values is called by _to_object normally
$this->_refresh_stored_values();
}
}