how can i access a property statically (without creating an object)?
is that possible at all?

i.e.

class foo
{
   var $prop = array('some','defines','are','here');
}

$myVar = foo::prop;
   OR
$myVar = foo::prop[0];

how can this be realized?
can someone help? is that possible with php?

-- 
Wolfram

... translating template engine ....
   http://sf.net/projects/simpletpl

... authentication system ....
   http://sf.net/projects/auth


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to