Heim >Backend-Entwicklung >PHP-Tutorial >symfony2 打包核心源码bootstrap.php.cache,如何断点看 kernel源码?

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

WBOY
WBOYOriginal
2016-06-06 20:38:221124Durchsuche

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文件断点非常不方便

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn