![]() |
|
|
+ Search |
![]()
|
May 16th, 2000 23:17
Nathan Wallace, Wico de Leeuw
It's exactly the same as accessing global variables in functions:
class Globals {
function show_self() {
global $PHP_SELF;
print $PHP_SELF;
}
}
should do the trick.