Hi. I was wondering what is the lifetime of a constant once defined as:
define('X')
Also another question - suppose this is my index.php:
<?php
/ Short and sweet /
define('WP_USE_THEMES', true);
require('./wp-blog-header.php');
?>
Is there gonna be any memory leak in this case, because the variable is redefined on each visit? Maybe I should check if it's defined first?