当前位置:Gxlcms > PHP教程 > symfony2打包核心源码bootstrap.php.cache,如何断点看kernel源码?

symfony2打包核心源码bootstrap.php.cache,如何断点看kernel源码?

时间:2021-07-01 10:21:17 帮助过:23人阅读

bootstrap.php.cache 在运行composer update或者composer install 的时候由脚本生成,主要的功能是将Symfony中必须要用到的核心类打包到单个文件中,同时提供classloader。

回复内容:

bootstrap.php.cache 在运行composer update或者composer install 的时候由脚本生成,主要的功能是将Symfony中必须要用到的核心类打包到单个文件中,同时提供classloader。

入口文件上
$loader = require_once DIR.'/../app/bootstrap.php.cache';

修改为
$loader = require_once DIR.'/../app/autoload.php';

就可以加载源码了。
cache文件断点非常不方便

人气教程排行