我剛開始使用codeIgniter,想知道CodeIgniter中的情況如何? 如CodeIgniter。一些基礎課程在哪裏?
此擴展類位於何處?
class Mystations extends CI_Controller{ //--- class content }
哪裏可以找到「load」和「model」?
$this->load->model('user_model');
雖然我知道使用CI活動查詢的,我不知道的東西在後臺如何工作或者mysql_conect在CI中。
我剛開始使用codeIgniter,想知道CodeIgniter中的情況如何? 如CodeIgniter。一些基礎課程在哪裏?
此擴展類位於何處?
class Mystations extends CI_Controller{
//--- class content }
哪裏可以找到「load」和「model」?
$this->load->model('user_model');
雖然我知道使用CI活動查詢的,我不知道的東西在後臺如何工作或者mysql_conect在CI中。
由於源代碼位於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
)
application/libraries
。 Read about extending here。application/models
。 Read about models here。config/database.php
連接到您的數據庫。你自動加載它在config/autoloads.php
。請注意,我的答案主要是指引用CodeIgniters用戶指南。他們的導遊非常好,可以幫助你遠離自己。
CodeIgniter + Google +知道要搜索的內容=成功!
我想他想知道1)Codeigniter.php 2)core/Loader.php和3)各種數據庫驅動程序 – 2012-04-20 09:36:58
否考慮讀CIS手冊/文檔?他們可能有一個。 – KingCrunch 2012-04-20 09:15:13
我通常grep我找不到的東西。我從RTFM學到了更多關於框架的知識。 – Anthony 2012-04-20 09:19:00
http://codeigniter.com/user_guide可能是最好的文檔框架;另外,檢查覈心/文件夾,一切都在那裏 – 2012-04-20 09:21:52