<?php

// define('TRUE', 'foo'); // works
// define('True', 'bar'); // works too, even in combination with the first one
// define('true', 'abc'); // Notice: Constant true already defined

var_dump(constant('TRUE')); // string 'foo'
var_dump(constant('True')); // string 'bar'
var_dump(constant('true')); // boolean true