Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm familiar with advanced OOP features like interfaces, abstractions, enums, generics, public , private , static keywords, exceptions, etc from Java. However, I'd like to know how all these things translate to PHP.

Specifically I'd like one tutorial or website which goes through all the advanced OOP features of PHP which were added in PHP 5 (I'm mostly familiar with everything from PHP 4) and also things which aren't directly related to OOP like the throw keyword and the try/catch blocks. Any suggestions?

share|improve this question
The php documentation is always a good spot; on php.net/oop you'll find a good introduction into the basics, but I think this is not what you're looking for. For try/catch behaviour have a look at php.net/exceptions .. – svens Oct 6 '09 at 17:04

closed as not constructive by casperOne Sep 20 '12 at 11:31

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

up vote 5 down vote accepted

There's a decent and free e-book called "PHP 5 Power Programming" (~5 MiB PDF) that I would recommend. It goes into the more advanced aspects of OOP in PHP and explains some common design patterns.

share|improve this answer
2  
Great resource, thank you! – pix0r Oct 6 '09 at 17:01

Assuming you haven't been there already, the php.net documentation is pretty good. Here is the section on PHP5's objects. There also is a section on migrating from PHP4 to PHP5.

share|improve this answer

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