Book Image

Persistence in PHP with Doctrine ORM

By : Kevin Dunglas
Book Image

Persistence in PHP with Doctrine ORM

By: Kevin Dunglas

Overview of this book

Doctrine 2 has become the most popular modern persistence system for PHP. It can either be used as a standalone system or can be distributed with Symfony 2, and it also integrates very well with popular frameworks. It allows you to easily retrieve PHP object graphs, provides a powerful object-oriented query language called DQL, a database schema generator tool, and supports database migration. It is efficient, abstracts popular DBMS, and supports PHP 5.3 features. Doctrine is a must-have for modern PHP applications. Persistence in PHP with Doctrine ORM is a practical, hands-on guide that describes the full creation process of a web application powered by Doctrine. Core features of the ORM are explained in depth and illustrated by useful, explicit, and reusable code samples. Persistence in PHP with Doctrine ORM explains everything you need to know to get started with Doctrine in a clear and detailed manner. From installing the ORM through Composer to mastering advanced features such as native queries, this book is a full overview of the power of Doctrine. You will also learn a bunch of mapping annotations, create associations, and generate database schemas from PHP classes. You will also see how to write data fixtures, create custom entity repositories, and issue advanced DQL queries. Finally it will teach you to play with inheritance, write native queries, and use built-in lifecycle events. If you want to use a powerful persistence system for your PHP application, Persistence in PHP with Doctrine ORM is the book you.
Table of Contents (12 chapters)

Summary


The last chapter was a quick overview of some advanced features of Doctrine: handling Inheritance though Mapped Superclass, Single Table Inheritance, and Class Table Inheritance; the Doctrine event system including lifecycle callbacks, listeners, and subscribers; and finally how to unleash the power of the underlying DBMS for specific use cases with native queries.

Throughout this book, we have learned how to use the Doctrine ORM to create a stable model layer in our PHP applications. We are now familiar with concepts behind Doctrine components and we are able to smartly use its ORM. We also looked at the most powerful (but also complex) features, including entity managers and entity states, mapping information, associations, DQL, hydration, inheritance, events, and native queries. There is still a lot to learn, and many of these topics deserve a dedicated book of their own.

Again, the online documentation of the Doctrine project (available at http://www.doctrine-project.org/) is comprehensive...