Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I just want to understand some concepts about PHP.

So, my question is, Is PHP an object-oriented language? If Not..

Then what about the framework CakePHP, is it an object-oriented MVC implementation of PHP?


Also, can a PHP application wholly built using classes, be called object-oriented?

share|improve this question
2  
Mostly. Yes. Yes. – Alix Axel Jan 15 '11 at 12:17
1  
Keyword is mostly, because PHP is not completely OO (if it were, there wouldn't be any raw scalar types for example). – BoltClock Jan 15 '11 at 12:21
Multiple inheritance is still not there in PHP So it not fully Object Oriented. – Positive Jan 15 '11 at 12:26
1  
If the basic language semantics allow for both paradigms, then it's commonly classified as an hybrid language. – mario Jan 15 '11 at 12:32
3  
@Shakti Singh. Multiple inheritance is not a basic concept of OO. – GolezTrol Jan 15 '11 at 12:39
show 3 more comments

6 Answers

up vote 11 down vote accepted

Yes, the latest versions of PHP are object oriented. That is, you can write classes yourself, use inheritance, and where appropriate, the built in functionality is built in objects too (like MySQL features).

There are still a lot of loose functions however, so there might be a disagreement about how object oriented PHP is. I think it is. And yes CakePHP is an object oriented framework.

share|improve this answer
2  
Update your question? michaelkimsal.com/blog/php-is-not-object-oriented I'd like to see your thoughts. – KeyneON Mar 28 '12 at 23:34
It's not my question, but it is my answer, which I won't update. :) But here's my comment: I think it's all about semantics, about your definition of object oriented. If you say that everything in a language should be an object befor you can call it object oriented, then PHP is not an OO language. But to me and many others, it only makes sense that "An OO language, is a language that allows OO programming". Basis concepts of OO are generally considered to be Dynamic Dispatch, Abstraction, Inheritance and Encapsulation. PHP implements all of these, and some more. – GolezTrol Mar 29 '12 at 6:03
I'm a Delphi programmer myself and for Delphi, there's the same discussion. Delphi supports classes with all those concepts mentioned above, but, having evolved from Pascal, it also supports a procedural style of programming and many functions, including the imported Windows API functions, are just functions/procedures. Nevertheless, there's big support for objects, and large parts of the application framework (VCL) is object oriented. I call Delphi an OO language by the same definition as PHP. – GolezTrol Mar 29 '12 at 6:09
Not only does PHP support OOP, but many of it's functions (like MySQL functions) are available in both procedural and OO style, so you can decide which one to choose. That way, when you use a framework like CakePHP, you can have an application structure that is OO to a great extent, except maybe operations on simple types, like ints and strings. But as the answer by @tereško tells you, even Java has these primitive types... – GolezTrol Mar 29 '12 at 6:10
But because there's so much discussion over the definition of OO that I've written more than just 'Yes' in my answer. And now there's this additional comment as well, in which I hope you see my thoughts. :) – GolezTrol Mar 29 '12 at 6:12
show 3 more comments

PHP is not fully object oriented but it supports some feature like

1) class
2) object
3) Constructors and Destructors
4) Object Inheritance
5) Scope Resolution Operator (::)

and many more. If you want to learn object oriented php refer the below reference link

1) http://php.net/manual/en/language.oop5.php

share|improve this answer

No, PHP is not fully object oriented language.

And neither is C++ or Java, because they all have primitive types (and PHP also has a huge collection of function like str_replace() and is_*(), which are clearly procedural in nature). Only pure object-oriented language, that i know of, are Ruby and Scala (and one could argue that latter is more aiming at functional programming paradigm).

PHP is, what one could call, "object-capable language".

As for the code written in PHP, you have to understand that just because you are using classes, it does not make it OOP. Especially if your code is mostly based on static class.

So, if you ask: "is CakePHP and OO framework ?", then answer is - NO. The most flattering description for it would be "class oriented programming". The code-base is filled with static methods and variables, where class acts more like a namespace. Basically CakePHP is a procedural code, wrapped in syntax, which on surface mimics object oriented code.

share|improve this answer
8  
+100 for just because you are using classes, it does not make it OOP, I have never seen "OOP" PHP code that wasn't just using classes as glorified namespaces. More people need to realize this! – Esailija Apr 19 '12 at 2:16
1  
+ i like the And neither is C++ or Java part – Baba Nov 29 '12 at 17:54
@Esailija singletons are glorified namespaces, as are static classes, and I can see where you are going with the 'primitives' argument. But how are regular object instances in PHP different from object instances in C# or Ruby? – GolezTrol Apr 26 at 6:04
@GolezTrol Because of the runtime environment of PHP, you rarely need more than one instance of object in a given execution, reducing it to a singleton that can be instantiated more than once but never makes sense to. If you have domain object model, then those are not any different. – Esailija Apr 26 at 9:17
@GolezTrol Thing is, in PHP, it's so easy to just use stdClass/Array directly from database results so many don't ever create an object model in PHP that would make it necessary to instantiate a class multiple times in a single PHP execution instance. – Esailija Apr 26 at 9:43
show 3 more comments

yes if you use features such as "data abstraction, encapsulation, messaging, modularity, polymorphism, and inheritance" your app will be OO.
also PHPCake is OO. but if you are searching for a MVC Framework you can test django writen in python. Go to right way from start :D
http://en.wikipedia.org/wiki/Object-oriented_programming
www.djangoproject.com

share|improve this answer

You will find all of the latest OOP features in PHP from version 5. Before PHP v5, there was PHP v4, which was not fully Object Oriented.

Also you will find many new & advanced frameworks like the following:-

These frameworks have some great features & are really powerful in true sense, and some are also programmer-friendly.

Some notable points:-

  • PHP v5 still does not support Multiple Inheritance.
  • PHP v5 still supports procedural way of coding, so it is still backward compatible for older websites (which had been developed in procedural way using PHP v4).

Hope it helps.

share|improve this answer

PHP is object-oriented. CakePHP is an object-oriented MVC framework. A PHP application built using classes can be called object-oriented.

share|improve this answer
1  
and php also supports procedural style. But all procedural-style functions do not have an OO equivalent. – greg0ire Jan 15 '11 at 12:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.