zend framework 初识

时间:2023-03-08 20:29:52

1. 请求顺序 : index.php --> Bootstrap.php --> IndexController.php

2. 验证顺序 :

Bootstrap.php
function __contruct($app) {
parent:: __construct($app);
file_put_contents('d:/mylog.txt', __FILE__.date('Y-m-d H:i:s' . '\r\n', FILE_APPEND));
} IndexController.php
function init() {
.......
}