I would like to know if PHP is Object Oriented, I read that from version 5 PHP now support features of OOP world. This means that PHP now became a full OO Language?
Do you have any feedback on developing using OO Style on PHP?
(Note: I do not have experience with PHP only C#).
PHP5 does support some OO features, but it is not “fully OO” in the way that some other languages are, like Ruby — for instance, PHP5 still has a number of primitive types (string, number, and array) which are not presented as objects, and the vast majority of its standard library is presented as bare functions.
On the other hand, the same could be said of some other languages, like Java, which are commonly held up as great examples of OO. 🙂