gpt4 book ai didi

php - 如何在 Codeigniter 的单独类函数中执行 SQL 查询

转载 作者:行者123 更新时间:2023-11-29 01:21:41 24 4
gpt4 key购买 nike

我是 CodeIgniter 的新手。为了可重用性,我想在一个单独的类函数中执行所有数据库查询。 和 JAVA spring 框架一样。

示例:我需要不同 Controller 中所有用户的列表。为此,在单独的类函数中编写了对 getAllUser() 的查询。之后我可以从不同的 Controller 调用它

这是我试图实现我的目标的一段代码

这将是我的服务等级

class UserManagementServices extends CI_Controller {   
public static function getAllUsers(){
$this->load->database();
return $this->db->query("SELECT * FROM users");
}
public static function getUser($userId){ ... }
public static function removeUser($userId){ ... }
public static function getUserHistory($userId){ ... }
}

这将是我的 Controller 类

class User extends CI_Controller {
public function index(){
$this->load->view('userHome');
}
public function viewAllUser(){
include 'application/controllers/UserManagementService.php';
var_dump(UserManagementService::getAllUsers());
}
}

但是这段代码是行不通的。

在 CodeIgniter 中不允许我在静态方法中执行查询。当我尝试这个时

class UserManagementServices extends CI_Controller {   
public static function getAllUsers(){
return 'Testing Purpose...';
}
}

而且效果很好。

最佳答案

首先,静态方法没有任何 CI 可用的东西。因此,从那里对数据库做某事是行不通的。其次,CI 中的 Controller 通常映射到 URI,因此最好只这样使用它们。

如果您有一些可重复使用的代码,那么创建一个帮助程序或一个库就是您所需要的。您将它们存储在一个单独的文件夹中,然后可以加载库,例如,像这样:$this->load->library('class_name'); 然后像这样访问它们: $this->class_name->method();

但这不适用于您的数据库。数据访问由您的模型处理 (duh)。您以与库非常相似的方式创建它们,并且在 CI 文档中对其进行了很好的解释,您应该阅读:http://ellislab.com/codeigniter/user-guide/index.html

关于php - 如何在 Codeigniter 的单独类函数中执行 SQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20976028/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com