Which one of the following variable cannot be used inside a static method?
Which one of the following variable cannot be used inside a static method? Correct Answer $this
By definition, static methods are not invoked in the context of an object. For this reason, static methods and properties are often referred to as class variables and properties.