phpのバージョン上げたらWarning: Use of undefined constantの対策

今までは

define(CONSTANT, "Hello world.");
echo CONSTANT; // "Hello world." を出力します

でもOKだったけど

define("CONSTANT", "Hello world.");
echo CONSTANT; // "Hello world." を出力します

とくくらないとダメになった。