Skip to content

Instantly share code, notes, and snippets.

@cebe
Created January 13, 2014 23:25
Show Gist options
  • Save cebe/8410072 to your computer and use it in GitHub Desktop.
Save cebe/8410072 to your computer and use it in GitHub Desktop.
PHP Tutorial code about constants.
<?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