Source Code:
(back to article)
<?php define("GREETING", "Hello, world!"); if (defined("GREETING")) { echo GREETING; } else { echo "GREETING is not defined!"; }
Result:
Report an issue