PHP define() vs const - by clownbaby Pretty straightforward question: In PHP, do you prefer to do (and why): define('FOO', 1); OR const FOO = 1; Also, the code is NOT in a class. Thanks. Read the article