PHP·98 questions

What are static properties and methods?

Answer
static $property, static function.
Call: ClassName::method().
self:: inside class.
static:: late static binding.
Do not require object instantiation.
Was this answer helpful?

More questions in this topic

Related questions from other topics