Zend Basic Tutorial
Zend Forms
Zend Database
Zend Advanced
Understanding the structure of a Zend Framework application is crucial to effective development. Here's a breakdown of the standard Zend MVC (Model-View-Controller) project structure:
/myproject/ │ ├── config/ # Global application configuration │ ├── application.config.php │ └── autoload/ │ └── global.php │ ├── data/ # Application-specific data (caches, logs, etc.) │ ├── module/ # Modules (each a mini-MVC app) │ └── Application/ │ ├── config/ │ │ └── module.config.php │ ├── src/ │ │ └── Controller/ │ │ └── Model/ │ ├── view/ │ └── application/ │ └── index/ │ └── index.phtml │ ├── public/ # Publicly accessible directory (index.php, assets) │ ├── index.php │ └── .htaccess │ ├── vendor/ # Composer-managed libraries │ └── composer.json # Composer dependencies
index.php
is the front controller.