SV: [PHP] Variable name for constants?

2008-12-11 Thread Anders Norrbring
> ... and in that way, you can create the name of the constant as you > please: > > $VAR_IMG = 'HOME'; > define('IMG_HOME', 'pic.jpg'); > echo(constant('IMG_'.$VAR_IMG)); > > SanTa > > - Original Message - > From: "clive" <[EMAIL PROTECTED]> > To: "PHP LIST" > Sent: Thursday, December 1

SV: [PHP] Variable name for constants?

2008-12-11 Thread Anders Norrbring
> > I dont think you can do that with a constant, but you can do this a > > normal variable: > > > > I stand under correction form my previous email, it can be done: > > define('TEST', 'the value of constant TEST'); > > $var= 'TEST'; > > echo constant($var); This may be too early in the morn