用户
 找回密码
 入住 CI 中国社区
搜索
查看: 2779|回复: 2
收起左侧

[HELP] BASEPATH,APPPATH

[复制链接]
发表于 2012-10-24 14:49:45 | 显示全部楼层 |阅读模式
codeigniter的常量BASEPATH,APPPATH是什么的路径。

发表于 2012-10-24 18:08:03 | 显示全部楼层
   // Path to the system folder
    define('BASEPATH', str_replace("\\", "/", $system_path));

    // The path to the "application" folder
    if (is_dir($application_folder))
    {   
        define('APPPATH', $application_folder.'/');
    }   
 楼主| 发表于 2012-10-29 11:11:37 | 显示全部楼层
thanks

本版积分规则