Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用纯 PHP 代替其框架有什么优势吗?
我正在写论文,我需要找到一些纯 PHP 的优点。我试图谷歌但只有赞美框架。
我会说框架可能比原始 PHP 脚本慢(根据定义)。
首先是路由和调度,使用 http 服务器进行路由总是比使用 PHP 更快。
性能永远是框架最大的问题,但是有一个好的缓存,尤其是一些 opcache,就没有那么大的问题了。
框架允许有一个公共层来构建应用程序,并且还带来了一组最佳实践和组件。它们主要帮助工业化进程。
不要忘记在您的工作中提及 PSR/PHP FIG!