Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
const PLANET = 'Earth';
define('PLANET', 'Earth');

For PHP 5.3+, you can use const

For PHP 5.2 and below, define will work
planet : constant String := "Earth";

New implementation...
< >
programming-idioms.org