Подтвердить что ты не робот

Определения констант пути CodeIgniter

Я наткнулся на эту страницу

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

Может кто-нибудь объяснить мне, что делают следующие константы:

EXT
FCPATH
SELF
BASEPATH
APPPATH

Спасибо

4b9b3361

Ответ 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

Ответ 2

Вы можете найти его короткое определение в index.php в корне вашей папки CI.

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

Ответ 3

SELF= index.php

Используйте, если вы хотите включить что-то из своей корневой папки
FCPATH= C:\xampp\htdocs\your_root_folder \

Используйте, если вы хотите включить что-то из папки приложения
APPPATH= C:\xampp\htdocs\your_root_folder\application \

BASEPATH= C:\xampp\htdocs\your_root_folder\system \