static call of non-static method?
am 21.09.2007 14:49:38 von Mads Lee JensenHi i was wondering why i can call a class method, by double colon.
without declaring it static.
this is my test
class Test_1
{
public function hello()
{
echo 'Hello';
}
}
Test_1::hello();