Possible Duplicate:
What is the best PHP programming book?

I come from a ASP.NET background (and over a decade development experience and a CS degree) where there is plenty of good quality resources on the web (e.g. MSDN, MSDN Patterns and Practices, reference software such as Enterprise Library, Petshop, Haacked and Gu blogs) and in books (e.g. Effective C#, Professional ASP.NET MVC, C# in Depth). Having dabbled in PHP for mostly pleasure on and off for years I recently decided to bolster my PHP knowledge to a more advanced level and to be honest I am a bit put off by the lack of information on the web and books geared towards the professional experienced web developer for PHP; its hard wading through the masses of beginners and/or poor quality material out there. Even here on SO, a search reveals only a couple of non beginner books, compared to over a dozen asp.net specific ones.

I'm starting to feel like this could be a waste of effort (and spend some time with another language), hoping to see some PHP book shaped rabbits pulled out of the Hat.

My short-list so far has the books "PHP Objects, Patterns, and Practice" and "PHP in Action".

link|improve this question

1  
Related (has some good-looking recommendations) stackoverflow.com/questions/2119083/… – Pekka Aug 25 '10 at 13:01
feedback

closed as exact duplicate by Gordon, Pekka, Andy E, George Stocker, John Conde Aug 25 '10 at 14:00

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

3 Answers

up vote 1 down vote accepted

Personally, I've found that once you get past the basics, there are no good language specific intermediate/advanced books. That doesn't mean that there aren't good books out there, but more that there is less need for language specific text once you are reasonably skilled at the language itself (IMHO).

So, instead of trying to find a book on advanced PHP, I would suggest finding a book on programming in general. Almost all concepts that you can pick should be easily applied to PHP.

Use the advanced language specific resources to then bring these abstract concepts to PHP itself. There's no point in reading about programming an Observer Pattern in PHP if you don't truly understand what the pattern is first. And I'll bet that if you understand the concepts in more general books, you'll find that you won't need the "advanced php books"...

Here's a few resources right here on SO:

  1. What is the single most influential book every programmer should read?
  2. List of freely available programming books
link|improve this answer
feedback

www.php.net

link|improve this answer
1  
One comment, ignore the code in the comments in the documentation. Some are really good, but most are hopelessly over-engineered or just plain dumb (depending on what's being done)... There's some good information, but the majority of it is plain wrong (or at least a bad idea)... – ircmaxell Aug 25 '10 at 13:07
ircmaxell, thanks that sounds just like the struggle I have. – NGRhodes Aug 25 '10 at 13:16
1  
Yes. Sometimes comments are very terrible. – plutov Aug 25 '10 at 13:49
1  
Too old school. prototype.php.net – Yannis Rizos Nov 29 '11 at 4:56
feedback

Not a book, but if you want to look at best practices in action, you can look at the code of some good projects written in PHP. I personally find drupal's core code to be very well written. I have learned a lot from it.

link|improve this answer
feedback

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