私は得ています:
注意: 未定義の定数 ABS_BASE の使用 - 11 行目の D:\path\include\global.php で「ABS_BASE」を想定
私のglobal.php
ファイルは次のようになります
<?php
/**
* Load configuration file
*/
include 'config.php';
/**
* Dynamically allocate base path
*/
$uri = reset(explode("?", preg_replace('/^' . preg_quote(ABS_BASE, '/') . '/', '', $_SERVER['REQUEST_URI'])));
define("BASE", str_repeat("../", substr_count($uri, "/")));
/**
* Load misc functions
*/
include 'function.misc.php';
そして、私のconfig.php
ファイルは次のようになります
<?php
/**
* Set to 0 or comment out to turn off errors
*/
ini_set("display_errors", 1);
/**
* Defines the root dir of your site
*
* Example values:
* /
* /shop/
*/
define("ABS_BASE", "/");
明らかに、呼び出される前に定義ABS_BASE
しているのに、なぜこのエラーが発生するのでしょうか?