Richard Davey wrote:
...
Isn't the warning coming from the fact that $cnst isn't defined,
rather than coming from the constant() function itself?
Best regards,
Richard Davey
Nope... tested with PHP 5.0.5-dev
<?php
/* Causes E_WARNING */
echo "constant('UNDEFINED_CONSTANT')\n";
echo constant('UNDEFINED_CONSTANT');
/* Causes E_NOTICE */
echo "UNDEFINED_CONSTANT\n";
echo UNDEFINED_CONSTANT;
?>
--
NEW? | http://www.catb.org/~esr/faqs/smart-questions.html
STFA | http://marc.theaimsgroup.com/?l=php-general&w=2
STFM | http://php.net/manual/en/index.php
STFW | http://www.google.com/search?q=php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php