2010年8月11日 星期三

[CodeIgniter] 使用Model時, 檔案名稱要用小寫

避免在不同的作業系統(Linux, Windows) Server大小寫錯誤。
The file name will be a lower case version of your class name. For example, if your class is this:
class User_model extends Model {

    function User_model()
    {
        parent::Model();
    }
}
Your file will be this:
application/models/user_model.php
都怪我沒把說明文件看清楚= =" 除錯除很久~
Related Posts Plugin for WordPress, Blogger...