Book: PHP Objects, Patterns, and Practice (2nd Edition) by Matt Zandstra (ISBN-10: 1590599098, ISBN-13: 978-1590599099)
For some of the basics, the same author has a couple on-line articles at ibm.com/developerworks: "Getting started with objects with PHP V5" and "Advanced PHP V5 Objects"
The book Head First Object-Oriented Analysis and Design ( ISBN-10: 0596008678, ISBN-13: 978-0596008673) is kind of interesting (I'm about half way through it right now). It's code examples are all in Java, but it's not that different from PHP 5 classes/objects and the analysis and design concepts all carry over to PHP.
PS: What I'm kind of getting at here is that you should try to concentrate on learning some of the OOP/OOA&D theory from the start, rather than just PHP-specific syntax. If you don't start thinking in an object-oriented way, then you just end up writing mostly procedural code that happens to include some objects.