Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
define以前は、PHP にいくつかの定数を記述した構成ファイルがありました。PHP 5.4 にアップグレードしてから、動作しなくなったようです。
define
次に例を示します。
//config.php define('CONSTANT', 'foo'); //page.php require_once 'config.php'; echo CONSTANT; //not defined
あなたの config.php ファイルが適切に含まれているか、定数を適切に定義しているとは思いません。define()PHP 5.4 でも以前と同じように動作します。
define()
構成ファイルをインクルードし、定数が定義されていることを期待したら、 を使用get_defined_constants()して何が得られたかを確認します。これは、定数に関する問題のデバッグに役立ちます。
get_defined_constants()