symfony2 打包核心源码bootstrap.php.cache,如何断点看 kernel源码?
程序员文章站
2024-01-26 17:39:28
...
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文件断点非常不方便