|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2000-07-01 18:37 UTC] a dot yeo at f5 dot com
[2000-07-03 11:10 UTC] stas at cvs dot php dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 05 14:00:01 2025 UTC |
<html> <body> <? if (define ("DIE", 99)) { echo ("--DIE-- is not internally defined"); echo ("<br>So, I defined it as 99 and it now becomes :"); echo DIE; } else { echo ("--DIE-- is already defined internally as: "); echo DIE; } </html> </body> --------------------------- Output turns out to be --DIE-- is not internally defined So, I defined it as 99 and it now becomes :1 --------------------------- If I change the constant name to something else other than DIE, it will be OK.