Marek Kilimajer wrote:
Jason Barnett wrote:
...

<?php

/* Causes E_WARNING */
echo constant(UNDEFINED_CONSTANT);


The above is wrong, use:
echo constant('UNDEFINED_CONSTANT');

OK, that's a good catch.  But this still causes an E_WARNING.

--
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

Reply via email to