MVC框架来说,简单点,就是解析你的ur地址。比如 index.php?cindex&arun 大多数应该都是这样,那么框架是如何根据 index 和 run 去找到 index 控制器,然后调用其中的 run 方法。当然后面还可以加很多的参数暂且先不说。确切的来…
whoops简介
whoops is a nice little library that helps you develop and maintain your projects better, by helping you deal with errors and exceptions in a less painful way.
whoops安装
使用composer安装
composer require filp/whoops
用法
require __DIR__.&…