gpt4 book ai didi

php - 将 sql 作为字符串传递给 codeigniter 中的 Controller

转载 作者:搜寻专家 更新时间:2023-10-31 21:02:52 26 4
gpt4 key购买 nike

在我的 Controller 中我有:

$query = $this->db->query("select * from table");

我想要一个文件myquery.sql,其中该文件的唯一内容是:

select * from table

所以我可以做类似的事情:

$query = $this->db->query(myquery.sql);

执行此操作的正确语法是什么?

最佳答案

您应该能够使用:

$query = $this->db->query(file_get_contents('myquery.sql'));

阅读更多关于 file_get_contents 的信息.


您可能需要使用正确的 myquery.sql 路径,但这是基本思路。

关于php - 将 sql 作为字符串传递给 codeigniter 中的 Controller ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38447630/

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