I come across the following sentence from PHP Manual :
PHP 5 has a full object model.
What does this statement actually mean?
What exactly PHP has by means of the term 'Full Object Model'?
Reference link from the PHP Manual : Introduction
The object model describes the properties of objects in a programming language. Visibility of classes/methods, encapsulation, polymorphism, inheritance, etc. Full object model means that php's object model is supporting all properties which most of the common object oriented languages have.