Instance vs. static method. Calling it statically or dynamically
问题 In PHP there is instance methods and static methods (just these two types)? Then we can call either of these statically or non-statically (is the name "dynamically"?)? So we can: Call an instance method statically; Call an instance method non-statically; Call a static method statically; Call a static method non-statically (all four correct?) How would the code for these four look? Are there any good websites explaining this? I am currently reading the following url: http://php.net/manual/en