Posted by Jason Barnett on 06/29/05 19:54
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
Navigation:
[Reply to this message]
|