gpt4 book ai didi

php - 如何在 Symfony 4 中找到 app/AppKernel.php?

转载 作者:行者123 更新时间:2023-12-04 23:12:52 26 4
gpt4 key购买 nike

我想根据本教程在 Symfony 4 的 AppKernel 类中注册一个包:

https://symfony.com/doc/3.3/bundles.html

但是我没有找到文件夹“app”,也没有找到文件 AppKernel.php,所以也没有找到 AppKernel 类。是我在 Symfony 安装中犯了错误还是我需要自己创建一个应用程序文件夹?

最佳答案

Symfony 4 的结构与 Symfony 3 不同

如果你想在你的应用程序中启用 bundle 你必须改变 配置/bundles.php 文件

像这样的东西

    // config/bundles.php
return [
// 'all' means that the bundle is enabled for any Symfony environment
Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
.
.
.

];

有关更多信息,请参阅此 tutorial

关于php - 如何在 Symfony 4 中找到 app/AppKernel.php?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51310447/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com