const MY\_CONST = "hello";
echo MY_CONST;   # => hello
# => MY\_CONST is: hello
echo 'MY\_CONST is: ' . MY_CONST; 
Comments