Quote:
|
Originally Posted by jake13jake
hmmm... variables that self-concatenate... yikes..... That scares me... Couldn't stefan had just recommended defining your own variables and going
SPC = " ";
NL = "\n";
|
Actually, they are comparible to a C's #define directive,
PHP Code:
#define SPC @ " " @
#define NL @ "\n" @
Quote:
|
Originally Posted by jake13jake
function(string@SPC@string@NL@string);
|
That's even more ugly than what it really is.. 'function(string SPC string NL string);'