Created
January 13, 2014 23:25
-
-
Save cebe/8410072 to your computer and use it in GitHub Desktop.
PHP Tutorial code about constants.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
define('PI', 3.1415); | |
if (!defined('MY_CONSTANT')) { | |
define('MY_CONSTANT', 42); | |
} | |
echo MY_CONSTANT; // 42 | |
echo round(42 / PI, 2); // 13.37 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment