笨。一些基本课程在哪里?

时间:2012-04-20 09:13:13

标签: php codeigniter

我刚开始使用codeIgniter并想知道CodeIgniter中的内容如何? 比如

  1. 此扩展课程在哪里?

    class Mystations extends CI_Controller{
    //--- class content }
    
  2. 哪里可以找到“加载”和“模型”?

    $this->load->model('user_model');
    
  3. 虽然我知道使用CI活动查询,但我不知道后台如何工作或者CI中使用了mysql_conect。

2 个答案:

答案 0 :(得分:1)

  1. 您自己的扩展库位于application/librariesRead about extending here
  2. 这个问题还不清楚。你的模型位于application/modelsRead about models here
  3. 通过提供您的设置,通过config/database.php连接到您的数据库。您可以在config/autoloads.php
  4. 中自动加载

    请注意,我的回答主要是参考CodeIgniters用户指南。他们的导游非常好,可以帮助你自己。

    CodeIgniter + Google +知道要搜索的内容=成功!

答案 1 :(得分:1)

由于源是在GitHub上托管的,因此您可以搜索实际代码以查找您所追求的内容。例如:

  1. CI_Controller searchresultsystem/core/Controller.php

  2. function model searchresultsystem/core/Loader.php

  3. mysqli connnect searchresultsystem/database/drivers/mysqli/mysqli_driver.php