Are class variables possible in PHP4?
I'm aware that functions can have static variables, using the 'static' keyword and that methods can be accessed as Class methods, using '::'. But I can't work out how to create a static class variable.
So far, my only options are to use a global variable, or to keep the variable as a static variable of a class method.