我刚开始使用codeIgniter并想知道CodeIgniter中的内容如何? 比如
此扩展课程在哪里?
class Mystations extends CI_Controller{
//--- class content }
哪里可以找到“加载”和“模型”?
$this->load->model('user_model');
虽然我知道使用CI活动查询,但我不知道后台如何工作或者CI中使用了mysql_conect。
答案 0 :(得分:1)
application/libraries
。 Read about extending here。application/models
。 Read about models here。config/database.php
连接到您的数据库。您可以在config/autoloads.php
。请注意,我的回答主要是参考CodeIgniters用户指南。他们的导游非常好,可以帮助你自己。
CodeIgniter + Google +知道要搜索的内容=成功!
答案 1 :(得分:1)
由于源是在GitHub上托管的,因此您可以搜索实际代码以查找您所追求的内容。例如:
CI_Controller search:result(system/core/Controller.php
)
function model search:result(system/core/Loader.php
)
mysqli connnect search:result(system/database/drivers/mysqli/mysqli_driver.php
)