笨路径功能定义(Codeigniter path functions definitions)

2019-07-17 11:57发布

我也碰到过这个页面

https://www.codeigniter.com/user_guide/general/reserved_names.html

可能有人请向我解释什么下列常量做:

EXT
FCPATH
SELF
BASEPATH
APPPATH

谢谢

Answer 1:

这些常量在每个定义index.php页面:

/*
 * -------------------------------------------------------------------
 *  Now that we know the path, set the main path constants
 * -------------------------------------------------------------------
 */
    // The name of THIS file
    define('SELF', pathinfo(__FILE__, PATHINFO_BASENAME));

    // The PHP file extension
    // this global constant is deprecated.
    define('EXT', '.php');

    // Path to the system folder
    define('BASEPATH', str_replace("\\", "/", $system_path));

    // Path to the front controller (this file)
    define('FCPATH', str_replace(SELF, '', __FILE__));

    // Name of the "system folder"
    define('SYSDIR', trim(strrchr(trim(BASEPATH, '/'), '/'), '/'));


    // The path to the "application" folder
    if (is_dir($application_folder))
    {
            define('APPPATH', $application_folder.'/');
    }
    else
    {
            if ( ! is_dir(BASEPATH.$application_folder.'/'))
            {
                    exit("Your application folder path does not appear to be set correctly. Please open the following file and correct this: ".SELF);
            }

            define('APPPATH', BASEPATH.$application_folder.'/');
    }

在管线196上启动https://github.com/EllisLab/CodeIgniter/blob/develop/index.php



Answer 2:

你可以找到你的CI文件夹的根目录中的index.php其简短的定义。

EXT: The PHP file extension
FCPATH: Path to the front controller (this file) (root of CI)
SELF: The name of THIS file (index.php)
BASEPATH: Path to the system folder
APPPATH: The path to the "application" folder


Answer 3:

=的index.php

当你想包括你的根文件夹使用的东西
FCPATH = C:\ XAMPP \ htdocs中\ your_root_folder \

当你想包括您的应用程序文件夹使用的东西
APPPATH = C:\ XAMPP \ htdocs中\ your_root_folder \应用\

基本路径 = C:\ XAMPP \ htdocs中\ your_root_folder \ SYSTEM \



文章来源: Codeigniter path functions definitions