gpt4 book ai didi

php - 如何删除不推荐使用的Symfony\Component\Debug\DebugClassLoader?

转载 作者:行者123 更新时间:2023-12-03 11:22:01 26 4
gpt4 key购买 nike

我已经将Symfony 3.4升级到4.4。剩下的唯一“弃用”警告是这样的:

php.INFO: User Deprecated: The "Symfony\Component\Debug\DebugClassLoader" class is deprecatedsince Symfony 4.4, use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.{"exception":"[object] (ErrorException(code: 0): User Deprecated:The "Symfony\Component\Debug\DebugClassLoader" class is deprecated since Symfony 4.4,use "Symfony\Component\ErrorHandler\DebugClassLoader" instead.at /vendor/symfony/symfony/src/Symfony/Component/Debug/DebugClassLoader.php:16)"} []


我不在任何地方使用 DebugClassLoader。如何删除此警告?

最佳答案

检查您的index.phpbin/console文件。
例如,在index.php中,应该有这样的部分:

if ($_SERVER['APP_DEBUG']) {
umask(0000);

Debug::enable();
}
但是相应的导入可能是:
use Symfony\Component\Debug\Debug;
在两个文件中将其更改为:
use Symfony\Component\ErrorHandler\Debug;

关于php - 如何删除不推荐使用的Symfony\Component\Debug\DebugClassLoader?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64421211/

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