vote up 5 vote down star
2

I used to use procedural-style PHP. Later, I used to create some classes. Later, I learned Zend Framework and started to program in OOP style. Now my programs are based on my own framework (with elements of cms, but without any design in framework), which is built on the top of the Zend Framework.

Now it consists of lots classes. But the more I program, more I'm afraid. I'm afraid that my program will be slow because of them I'm afraid to add every another one class which can help me to develop but can slow the application.

All I know is that including lots of files slows application (using eAccelerator + gathering all the code in one file can speed up application 20 times!), but I have no idea if creaing new classes and objects slows PHP by itself.

Does anyone have any information about it?

flag

2  
If your program is getting slow you may reconsider your class structure and how do you implement your objects. I never have heard that OOP is slower than procedural-style. – backslash17 Oct 30 at 19:15
Thanks for your edits, Thomas! One thing: I think, the new title makes a bit different sense. Though, my English isn't well and I won't rollback, just comment :) – valya Oct 30 at 19:15
@backslash17 I don't think my program is slow. But I'm afraid if another 10 classes will make it slow. Another 50? Another 100? – valya Oct 30 at 19:17
That's why you have inheritance! Why 50 classes or 100? Just inherit common behaviors. That`s why i`m talking about to reconsider class structure if you need to create 50 or 100 classes more. – backslash17 Oct 30 at 19:26
Of course I inherit them! For example: stackoverflow.com/questions/1641940/… – valya Oct 30 at 19:30
show 1 more comment

7 Answers

vote up 5 vote down check

Here's good article discussing the issue. I also have seen some anecdotal bench-marks that will put OOP PHP overhead at 10-15% Personally I think OOP is better choice since at the end it may perform better just because it probably was better designed and thought true. Procedural code tends to be messy and hard to maintain. So at the end - it has to be how critical is performance difference for your app vs. ability to maintain, extend and simply comprehend

link|flag
thanks! (btw, does the Script B in anecdotal bench-marking work? I think, where $basket should be passed by reference. Or I'm too C-lish?:) – valya Oct 30 at 19:36
Imho, never choose one or the another with blinded eyes. If the script is small, and you need full performance, go with procedural, trying to write the less spaghetti that you can. If the script (not the project, i mean the script.. big projects have many small scripts, some in oop, some in procedural) and you need full maintainability, go with oop. – DaNieL Nov 5 at 15:48
I agree and I'm (sorta) making the same point at the very end – DroidIn.net Nov 5 at 16:33
vote up -6 vote down

All I know is that including lots of files slows application

If that's all you know then you should probably spend a lot more time learning. OOP is not likely to slow anything down more than sloppy work.

link|flag
9  
-1 Attitude. It's a question, and he's asking. If he was telling it'd be different. – C. Ross Oct 30 at 19:19
1  
He is not asking for difference between OOP and "sloppy work" but rather OOP and procedural – DroidIn.net Oct 30 at 19:28
I used to read about OOP in C++ (Exceptional C++, etc; whatever). I've been told what OOP can be slow. Especially with abstract members. Btw, if you are a professional in PHP, why are your site is in pure html? (Or why are you trying to hide the language in which it's written?) – valya Oct 30 at 19:50
@NSD this isn't about hiring (that's carrers.stackoverflow.com) this is about learning/teaching/answering questions. – C. Ross Oct 30 at 19:56
Doesn't the fact that he posted this question prove that he wants to spend "more time learning"? This content-less post does nothing other than condescend the OP and reiterate what he had already said. – lhnz Oct 30 at 20:01
vote up 0 vote down

Yes, every include makes your program slower, but there is more to it than that.

If you decompose your program, over many files, there is a point where you're including/parsing/executing the least amount of code, vs the overhead of including all those files.

Furthermore, having lots of files with little code ain't so bad, because, as you said, using things like eAccelerator, or APC, is a trivial way to get a crap ton of performance back. At the same time you get, if you believe in them, all the wonderful benefits of having and Object Oriented code base.

Also, slow on a per request basis != not scalable.

Updated

As requested, PHP is still faster at straight up array manipulation than it is classes. I vaguely remember the doctrine ORM project, and someone comparing hydration of arrays versus objects, and the arrays came out faster. It's not an order of magnitude, it is noticable, however -- this is in french, but the code and results are completely understandable.. Just a note, that doctrine uses magic methods __get, and __set a lot, and these are also slower than an explicit variable access, part of doctrine's object hydration slowness could be attributed to that, so I would treat it as a worst case scenario. Lastly, even if you're using arrays, if you have to do a lot of moving around in memory, or tonnes of tests, such as isset, or functions like 'in_array' (it's order N), you'll screw the performance benefits. Also remember that objects are just arrays underneath, the interpreter just treats them as a special. I would, personally, favour better code than a small performance increase, you'll get more benefit from having smarter algorithms.

link|flag
Oh, thanks for the last line! It kills lots of my doubts :) What about the other lines, as I said, I know about include and asking about classes themself :) – valya Oct 30 at 19:29
vote up 0 vote down

If you're using include_once() then you are causing an unnecessary slowdown, regardless of OOP design or not.

OOP will add an overhead to your code but I will bet that you will never notice it.

link|flag
Oh, thanks, I think I should remember it. Btw, I don't use includes very often. I prefer autoloading files then testing and gathering the bigger part of them in the one file then uploading to production – valya Oct 30 at 19:42
vote up 0 vote down

You may reconsider to rethink your classes structure and how do you implement them. If you said that OOP is slower you may have to redesign your classes and how do you implement them. A class is just a template of an object, any bad designed method affects all the objects of that class.

Use inheritance and polimorfism the most you can, this will effectively reduce the amount of behaviors and independent methods your classes need, but first off all you need to create a good inheritance map, abstracting your first or mother classes as much as you can.

It is not a problem about how many classes do you have, the problem is how many methods, properties or fields they have and how well are those methods structured. Inheritance reduces the amount of methods to design drammatically and the amount of code to be compiled too.

link|flag
I haven't said that 'OOP is slower'. I've asked, if it is. – valya Oct 30 at 19:39
vote up 0 vote down

Using large frameworks for web apps that actually do not require so large number of classes for everything is probably the worst problem that many are not aware of. Strip it down at least not to include every bit of code, keep just what you need and throw the rest.

link|flag
vote up 2 vote down

The most important thing to remember is, design first, optimize later. A better design, which is more maintainable, is better than spaghetti code. Otherwise, you might as well write your web app in assembler. After you're done, you can profile (instead of guess), and optimize what seems slowest.

link|flag
profiling php is such a headache (for reading XDebug's files I have to use Linux. Or use the strange Air application which isn't show any info, but only convert the file into the other odd format. Or I can use Zend Debugger, but I don't really want to buy Zend Studio now) – valya Oct 30 at 19:46
+1 for truthiness – Arms Oct 30 at 19:54
Wincachegrind has been fine for reading profiler output under windows for me. – Frank Farmer Oct 30 at 23:49
There is also webcachegrind, which is pretty interface to xdebug profile logs. – Saem Oct 31 at 17:27

Your Answer

Get an OpenID
or

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