I have not seen one simple example that shows OOP is better than procedural. Everyone talks about re-usability and wrapper classes... Here's the basic logic. If you're writing your code well, it won't matter what you're using. I find it easier searching through procedural code, but maybe that's because I'm used to it.
The example above with the cookie, I'd have to search what the function does. This means that I have to track the class down that contains this, and then search the function. While looking at the procedural part, it's very easy to see that I'm looking at a cookie and its value without searching through files of code, and God forbid that there's a wrapper class. Even more file searching.
You can simply make procedural code just as good if you know what you're doing. Create functions, store them in properly named files, and use your "require_once" when necessary. I'm sorry, but I'd rather have the performance gain you get out of procedural code. If you're a good programmer, a procedural website will be just as easy to understand.
I understand if we're making a console game, and our objects need to store realtime game data, sure, use OOP. For a page that loads in 3 seconds, having that object survive for only 3 seconds, is pointles really.
Other than portability (which can just as easily be done procedurally), what other gains are there really? If you have to create wrappers, maybe you're doing something wrong and need to look at the entire system design???
I've been looking for a GOOD answer as to why using OOP is better, and I still haven't found a GOOD answer. Someone please convince me.