Book Image

PHP Web Development with Laminas

By : Flávio Gomes da Silva Lisboa
4.5 (2)
Book Image

PHP Web Development with Laminas

4.5 (2)
By: Flávio Gomes da Silva Lisboa

Overview of this book

Considered the next generation of the Zend framework, Laminas is a high-performance PHP framework for creating powerful web applications with an evolutive architecture. This book takes a hands-on approach to equip you with the knowledge of the Laminas framework necessary to start building web applications based on the reuse of loosely coupled components. You'll learn how to create the basic structure of a PHP web application divided into layers, understand Laminas’ MVC components, and be able to take advantage of the Eclipse platform as a method for developing with Laminas. Step by step, you'll build an e-commerce application based on the technical requirements of a fictional business, and get to grips with implementing those requirements using Laminas components. By the end of this web development book, you’ll be able to build a completely secured MVC application in PHP language using Laminas.
Table of Contents (20 chapters)
1
Part 1: Technical Background
6
Part 2: Creating an E-Commerce Application
13
Part 3: Review and Refactoring

The request life cycle in the Laminas MVC

At this moment, you can quickly launch the whatstore application and see the home page with the embedded web server for PHP. From the whatstore directory, you can type the following command:

php -S localhost:8000 -t public/

When you open localhost:8000 in your browser, you will see the same welcome page that you will have seen in Chapter 2, Setting Up the Environment for Our E-Commerce Application. Of course, we haven’t changed any view yet.

In Chapter 5, Creating the Virtual Store Project, we learned a little about the public directory. We learned that the structure of an MVC Laminas application is like that of a medieval castle, where the only way to enter is over the drawbridge. The drawbridge here is the public directory. All HTTP requests are passed to the index.php file inside the public directory. So, what does index.php do? It does this:

  • Imports the autoload.php Composer file.
  • Checks whether the Laminas Application...