Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Patterns, PHP, ORM

What are the best links for learning design patterns (orm too)? I found this site, but you do not have standards orm (http://sourcemaking.com/design_patterns)

like image 712
Andre Te Avatar asked Apr 13 '26 10:04

Andre Te


1 Answers

If you're asking this question regarding design patterns and OOP specifically for the PHP language can I recommend that you have a look at PHP in Action. It's a great intro into OOP for PHP programmers; covers SOLID design principles and if I remember rightly it covers some of the most common patterns used in OO design. I'm not sure if it goes over ORM frameworks (or patterns) but if you want more information on that then do a quick google search for the repository pattern.

like image 177
james lewis Avatar answered Apr 14 '26 23:04

james lewis