Composite pattern is intended to compose objects into tree structures to represent whole-part hierarchies. Composite lets clients treat individual objects and compositions of objects uniformly. Use this pattern whenever you have composites that contain components, each of which could be a composite. The whole point of the Composite pattern is that the Composite can be treated atomically, just like a leaf. At the heart of this pattern is the ability for a client to perform operations on an object without needing to know that there are many objects inside.
Example
In this example, the OneBook class is the individual object. The BooksSet class is a group of zero or more OneBook objects. Both the OneBook and BooksSet can return information about the books title and author. OneBook can only return this information about one single book, while BooksSet will return this information one at a time about as many OneBooks as it holds.
Result of the example:
Core PHP Programming, Third Edition by Atkinson and Suraski
Design Patterns by Gamma, Helm, Johnson, and Vlissides
Core PHP Programming, Third Edition by Atkinson and Suraski
PHP Bible by Converse and Park
Core PHP Programming, Third Edition by Atkinson and Suraski
PHP Bible by Converse and Park