Ok, I'm trying to concat a class var but still cannot. I know it's not possible in version 4 as the docs say so (third gray box down).. I though maybe it would work in PHP 5 but it's still a no go. Just though someone may know of a workaround or why this is not possible..?? I'm trying to do:
<?php
define('CONST_EX', 'test');
class Test {
// I want this to be 'testtest'
static $example = CONST_EX.'test';
}
// Should print testtest
print(Test::$example);
?>