Update php.html.markdown

added a better description for static functions and properties
This commit is contained in:
ipscott 2013-08-29 23:50:11 -05:00
parent c7a1136772
commit 92e921e8f3

View File

@ -468,10 +468,16 @@ class MyClass
print 'MyClass';
}
//final keyword would make a function unoverridable
final function youCannotOverrideMe()
{
}
/*
Declaring class properties or methods as static makes them accessible without needing an instantiation of the class.
A property declared as static can not be accessed with an instantiated class object (though a static method can).
*/
public static function myStaticMethod()
{
print 'I am static';