Упрощенный пример: < /p>
Код: Выделить всё
function baseQuery()
{
$query = $this->db->select('*')
return $query;
}
function queryWhere($value)
{
$query = $this->baseQuery();
$query->where($value)
$result = $query->get();
return $result
}
Подробнее здесь: https://stackoverflow.com/questions/487 ... el-methods
Мобильная версия