FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

PHP constant() Function

PHP Misc Reference PHP Misc Reference

Example

Return the value of a constant:

<?php
//define a constant
define("GREETING","Hello you! How are you today?");

echo constant("GREETING");
?>
Run example »

Definition and Usage

The constant() function returns the value of a constant.

Note: This function also works with class constants.


Syntax

constant(constant)

Parameter Description
constant Required. Specifies the name of the constant to check

Technical Details

Return Value: Returns the value of a constant, or NULL if the constant is not defined
PHP Version: 4+

PHP Misc Reference PHP Misc Reference