php Programming Glossary: abstracting
Proper Repository Pattern Design in PHP? http://stackoverflow.com/questions/16176990/proper-repository-pattern-design-in-php type of data lookup logic. They are not query builders. By abstracting it like our repository we can change it's implementation and..
Laravel Repositories http://stackoverflow.com/questions/17367159/laravel-repositories the advantages of Repositories in Laravel It seems to be abstracting the Model layer from the business logic of the application...
How to IPC between PHP clients and a C Daemon Server? http://stackoverflow.com/questions/1746207/how-to-ipc-between-php-clients-and-a-c-daemon-server both the Thrift framework and ZeroMQ do a fantastic job of abstracting away the hard socket level programming. Thrift even gives you..
Commitment to Zend Framework - any arguments against? http://stackoverflow.com/questions/2427981/commitment-to-zend-framework-any-arguments-against development. I have been thinking about encapsulating and abstracting ZF's functionality into own classes to be able to switch frameworks..
Is MVC + Service Layer common in zend or PHP? http://stackoverflow.com/questions/3744402/is-mvc-service-layer-common-in-zend-or-php is different from Repository pattern. Repository is about abstracting database access so you can use a database like a Collection...
MVC: how much code should be in a view? http://stackoverflow.com/questions/4698880/mvc-how-much-code-should-be-in-a-view a couple dozen or even hundreds of view and widgets not abstracting these parts will lead to code duplication. Put all the logic..
How does one use the RDBMS in a performant way on top of Zend_Db_Table? (if at all…) http://stackoverflow.com/questions/4997577/how-does-one-use-the-rdbms-in-a-performant-way-on-top-of-zend-db-table-if-at-a makes tables behave a bit more like native PHP objects by abstracting away the SQL queries themselves. The user need not worry about..
|