Customer Reviews


19 Reviews
5 star:
 (11)
4 star:
 (4)
3 star:
 (4)
2 star:    (0)
1 star:    (0)
 
 
 
 
 
Average Customer Review
Share your thoughts with other customers
Create your own review
 
 
Only search this product's reviews

The most helpful favorable review
The most helpful critical review


6 of 7 people found the following review helpful:
5.0 out of 5 stars Best way to learn OOP in PHP
I have read a few books on OOP (there is always something new to learn), but this one is the best by far.
Good constant level of complexity; not too abstract, not too easy, but something to put your teeth in, sweat a little, but in the end come to a good understanding of the subject without frustrations.
There are many examples following the to the point...
Published on October 19, 2009 by Maarten v K

versus
5 of 6 people found the following review helpful:
3.0 out of 5 stars Not recommended for the procedural expert, OOP neophyte
Contrary to what the author states in the introduction and 1st chapter, this book is not for someone who wants to understand the object oriented programming paradigm. While overall, the book does belong in any PHP OOP collection, I hesitate to recommend it as an introduction to OOP book. As the title states, it focuses more on OOP solutions than concept. For the basics...
Published 18 months ago by A. Reyes


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

6 of 7 people found the following review helpful:
5.0 out of 5 stars Best way to learn OOP in PHP, October 19, 2009
This review is from: PHP Object-Oriented Solutions (Paperback)
I have read a few books on OOP (there is always something new to learn), but this one is the best by far.
Good constant level of complexity; not too abstract, not too easy, but something to put your teeth in, sweat a little, but in the end come to a good understanding of the subject without frustrations.
There are many examples following the to the point explanations. It's always a challenge for an author I guess to address the reader at a good adequate level to hold his/her attention. Knowing where the bottlenecks are. Giving a concrete example when it start to become abstract. Offering meaningful cases. The author does al that!
This book is a real must for anybody who wants too start learning OOP from the beginning, although it's recommendable to know a good deal of (procedural) php when starting with this book.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


6 of 7 people found the following review helpful:
5.0 out of 5 stars I liked this one alot, October 12, 2008
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
This book really covered alot of topics that I work with on a daily basis and showed me step by step how to implement then using OOP. I was really pleased with the lessons and I learned alot from this book. I recomend it to anyone who is trying to move to the Object Oriented PHP way of doing things.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


3 of 3 people found the following review helpful:
4.0 out of 5 stars If you wanna be sure to get it... here's the way., October 8, 2009
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
The book is pretty straight foward, and presents the subject matter in a down to earth, understandable way. Plus it's well organized so it makes a rather handy reference as well. If I had to gripe about one thing it's the quantity of information in the book. It's a great book, don't get me wrong, but I would have loved for it to keep going. Help me understand more. Perhaps another volume is on the way?
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 6 people found the following review helpful:
3.0 out of 5 stars Not recommended for the procedural expert, OOP neophyte, July 14, 2010
By 
A. Reyes (miami, fl United States) - See all my reviews
(REAL NAME)   
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
Contrary to what the author states in the introduction and 1st chapter, this book is not for someone who wants to understand the object oriented programming paradigm. While overall, the book does belong in any PHP OOP collection, I hesitate to recommend it as an introduction to OOP book. As the title states, it focuses more on OOP solutions than concept. For the basics and hand holding, another book may be best.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


9 of 12 people found the following review helpful:
4.0 out of 5 stars Great book to learn PHP OOP and practice OOP, June 27, 2010
By 
Quoc Doan "deviantprogrammer" (Golden State, America F yeah) - See all my reviews
(REAL NAME)   
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
Alright, since amazon kept on complaining about review (slow reader).

Warning:
I've read 7 out of 9 chapters. Chapter 8 and 9 are in the back burner for now, not because it's boring, but I think it's more optional or things to learn later. My background is C/C++/VHDL/MIPS/ and whatever else I forgot to mention.

Codes in the book works!
Almost all of it. There's a small typo on page 159, the code assign a value to an array without specifying the index, so I believe that rewrite the array. Checking it with the source code, which you can download from the website, the author actually have something different. Anyway, took 3 hours to debug 300 lines or so, learned to debug better yay. There are so much codes in the book, that it gives you chances to practice the OOP that the author is trying to teach you, and it's very applicable to real world coding.

Tone and pace:
The tone and the pace the author goes throughout the book is straight forward. Whenever he skipped something he would state that you should have learned it or go research it (the regular expression functions), which is understandable because this isn't a "let's teach you php as if you know nothing about it."

OOP:
You learned to extend/inherit the php's offical date class. Learn how to extend the exception library, neat. You basically learn how to extend and customize php built in libraries or create a class to wrap php functions, facade pattern, and make it tailor to you, so that you can reuse it in your next project, and make your life easy. OOP, ahh such a beautiful concept.


The last three or so chapters are more advance, XML, SPL (standard php library), RSS, and such. What really sweet is the later chapter reuses the classes that you've code in previous chapters. So it shows the strength of OOP (reusability) and such.

On page 195, it's out dated the function does return a message so the if else statement isn't needed but meh.

On page 239 regarding XML namespace, since php 5.3 came out is there another way to do it? Shrug, it doesn't matter that much the way the author does it in the book currently isn't that bad. I wish the author spent his time talking more about the concept of namespace. I ended up googling that.

Oh, the clone subject is mention but isn't use in real world coding. That's a complaint I guess. I wish there was a least a 300 lines code project with the clone keyword in it. I believe it was only mention once about dvd and whatnot code. Oh well. Maybe it's in the last 2 chapters?

Oh debugging is always fun. On the date class when I had to reuse my date class for the XML chapter, the date output had the day and the month together without a space in between it. Ugh... had to debug that 400+ lines -_-. Learned to start debugging all output functions first haha.

Coding Standard and Documentation:
What's also nice is there's a coding standard, the Zend Framework coding standard, so if you don't have a coding style yet, at least you got one now. The phpDocument is pretty sweet, teaches you to document your code so other people can read it. Anyway, the installation of phpDocument isn't exactly there, so google it.

Summary:
This is THE book where I've learned OOP for PHP. It's a great book and I enjoyed it a lot. No book is perfect but this book set out to teach you something, and it does that well enough to get almost ALL of the points across to ya. I recommend this book to any one that knows PHP but knows nothing about OOP. If you want to make your life easy, have maintainable codes, and reusable codes, this book will teach you it.

Update July 19, 2010:
Chapter 8
Basically teaches you how to emulate multiple inheritance with interfaces.
You end up extending a class and at the same time implementing two interfaces (countable & iterator).

Complaints:
-The closing xml tag code explanation could have been better if the author refer to it being similar to a "stack". The most current XML element tag you created is the first thing that you close.

-The last test code to test out your class work or not will always output, "A problem occurred." Because the flush() function returns nothing! It's not in the errata page. A little tweak and you can have it return a bool flag if you wanted to. This isn't reported in the errata page and you can see it's an error because the official source code will do the same thing.

-Even though the author had you implementing the countable interface you don't use it at all. You can however test it out yourself. Just apply the class instance to the function .count(). So it's not that big of a deal.

Anyway, I actually found the errata page. I have to say then most of the code works if it didn't then it's either syntax or the elusive logic error.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


2 of 2 people found the following review helpful:
5.0 out of 5 stars its a good book, June 16, 2010
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
i'm a procedural PHP developer with a few years of experience. i have been working on adapting to OOP methods and best practices (where applicable only--i dont write everything in OOP). the book is everything it was promised to be. i read "php & MySQL development" first by Luke Welling and Laura Thompson-- the 50 pages or so of OOP content there helped me a bit. I did several tutorials as well.. at this point, with my level of understanding, the david powers OOP book was perfect for me. it helped me understand how to apply OOP in a way that actually improved my projects. the reading is right at my level, and the examples are helpful. there's some explanations that david powers uses to explain OOP that i have not seen elsewhere.

i highly recommend the book for beginning or intermediate developers trying to improve their depth of understanding related to OOP. if you're already an expert, then you might feel more critical; who knows. however, if you are truly an 'expert' maybe you don't need any books at all ;)

so far this book has taken me one step closer to a guru level knowledge of PHP. at the same time, i now have more depth in my comprehension of OOP-- a 'best practice' that applies to many languages, not just PHP.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


1 of 1 people found the following review helpful:
5.0 out of 5 stars Great introduction into OOP PHP, November 29, 2011
This review is from: PHP Object-Oriented Solutions (Paperback)
I've been doing procedural programming in PHP for four years now and running my own site full time have acknowledged the fact I need to start building it in OOP. I could never understand any of the "intros" on the internet so I researched a bunch of books online and settled on this one. I can tell you I have not been disappointed, in fact, I have been pleasantly surprised. It's been a couple months since the purchase and I'm beginning to write full fledged PHP classes with confidence. Time and again I will begin to wonder something and realize David wrote about in the book and I can consult it! He really did a good job thinking about real world examples that would help teach real world programmers like myself who need to learn these concepts quickly and proficiently. I just wanted to step in here and recommend this book for others like myself!
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5 of 7 people found the following review helpful:
3.0 out of 5 stars Not a beginners book for understanding PHP OOP, January 20, 2011
By 
Amazon Verified Purchase(What's this?)
This review is from: PHP Object-Oriented Solutions (Paperback)
I have learned a lot over the years from David Powers' books on PHP and Dreamweaver. They were the first books on PHP that I purchased and read. I have since read PHP books by other authors and one criticism I have formed is that Mr. Powers, while extremely knowledgeable, has a tendency to get very complicated. He introduces a concept, but then that concept depends on 2 more concepts that contain "gotchas" that need further explanation etc., etc., until the excitement you felt in approaching the original concept gets lost down a spiral of minutia and complexity that - although important - can be detrimental to the shaky confidence of a true beginner. Being thorough is great, but not so thorough that you overload those you are trying to teach. Never is this more apparent than PHP Object-Oriented Solutions. I have completed the first 3 chapters and they were quite a struggle! My brain hurt. I don't understand why there wasn't an attempt to start out with MUCH simpler classes. Maybe a short, easy database connection class or something. Instead, the first class is a Date class and Mr. Powers goes into all manner of complexities, starting with an exhaustive dissection of PHP's DateTime and DateTimeZone classes, then extending the DateTime class and understanding how to deal with leap years, adding dates while accounting for different amounts of days per month, ect., which to me - although a very useful and well thought-out class - just added layers and layers of mental complexity right at the beginning, and made it much more difficult than it should have been for a fledgling OOP fawn struggling to learn syntax, structure, usage, etc.

There are some basic examples in Chpt 2, but there needs to be a smoother transition from those to the intense, tangled complexity of the other chapters.

So in all honesty, I cannot recommend this as a "gentle introduction" to the PHP OOP world. It is more like dropping you into the deep end and hoping you learn to swim. I would love to see a book that starts with a simple, basic class and then extends it through subsequent chapters, while introducing OOP theory along the way. I did not like how all the theory was crammed into one VERY dense chapter at the beginning of the book (chpt 2).

Having said all that, I think if you approach this book as a "solutions" book more than a "gentle introduction" it has some great benefit to those who are able to comprehend the level of complexity and make use of the classes offered. Certainly this is evidenced by the many positive reviews here.

For me, however, it got too complex, too soon. I am still looking for that "gentle introduction". If anyone knows a more basic book on the subject, please let me know.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5.0 out of 5 stars Rock Solid Foundation Object-Oriented PHP, October 19, 2011
This review is from: PHP Object-Oriented Solutions (Paperback)
PHP Object-Oriented Solutions by David Powers gives a great explanation to anyone that wants to jump into the world of Object-Oriented Programming in PHP. I can't stress enough how many times I've come back to this book as a quick reference on encapsulation, inheritance, and polymorphism. The first two chapters are quintessential in learning the foundation of how PHP classes are written and how they work. The following chapters utilize what's shown in the first two by creating your own classes to help handle dates, validate forms, and even create RSS feeds.

The book is geared towards an intermediate PHP developer who knows the basics of PHP and is comfortable with procedural programming. It could be used by an advanced programmer as a reference as well. It's easy to read and worded in "simple terms" so that it is much easier to understand than other books I've read on OOP.

This book significantly helped me learn the basics of OOP and now I'm more than comfortable using frameworks such as Yii or building my own OOP frameworks to create new web apps. I highly recommend this book to anyone that's new to OOP and wants to learn more about it.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


5.0 out of 5 stars Great PHP OOP Book!, August 24, 2011
This review is from: PHP Object-Oriented Solutions (Paperback)
Of all the PHP books in my library, I use this one the most. Warning: do not attempt this book if you have no concept of object-oriented programming (OOP). I would try understanding chapters 1 & 2 of "The Object-Oriented Thought Process" (Weisfeld) or some other OOP for beginners book prior to tackling this one. However, this book is amazing if you have a preliminary grasp of OOP. Basically each chapter gives instructions on how to harness and customize a different built-in PHP class (for example, chpt3 the DateTime class for displaying/calculating dates, chpt6 the SimpleXMLElement class for creating/parsing XML documents, etcetera). As a bonus, chapter 7 offers an introduction to the SPL (Standard PHP Library), a collection of classes built into PHP for solving standard problems. This book is a great deal. Definitely worth more than Amazon is charging for it.
Help other customers find the most helpful reviews 
Was this review helpful to you? Yes No


‹ Previous | 1 2 | Next ›
Most Helpful First | Newest First

This product

PHP Object-Oriented Solutions
PHP Object-Oriented Solutions by David Powers (Paperback - August 21, 2008)
$36.99 $22.51
In Stock
Add to cart Add to wishlist