Laravel 的一个语法问题

class Kernel extends ConsoleKernel
{
    /**
     * The Artisan commands provided by your application.
     *
     * @var array
     */
    protected $commands = [
        //
        \App\Console\Commands\ESInit::class
    ];

    /**

如上所示 其中php \App\Console\Commands\ESInit::class的::调用的是静态方法,那么这里的class什么意思呢

《L01 基础入门》
我们将带你从零开发一个项目并部署到线上,本课程教授 Web 开发中专业、实用的技能,如 Git 工作流、Laravel Mix 前端工作流等。
《L05 电商实战》
从零开发一个电商项目,功能包括电商后台、商品 & SKU 管理、购物车、订单管理、支付宝支付、微信支付、订单退款流程、优惠券等
最佳答案
dd(
\App\Console\Commands\ESInit::class ==  'App\Console\Commands\ESInit'
);
//true

看爱好 喜欢'App\Console\Commands\ESInit'就用他

我比较喜欢 \App\Console\Commands\ESInit::class

3年前 评论
讨论数量: 4
dd(\App\Console\Commands\ESInit::class);
3年前 评论
dd(
\App\Console\Commands\ESInit::class ==  'App\Console\Commands\ESInit'
);
//true

看爱好 喜欢'App\Console\Commands\ESInit'就用他

我比较喜欢 \App\Console\Commands\ESInit::class

3年前 评论

所有类默认存在的一个成员,指向类所在的命名空间!

3年前 评论

讨论应以学习和精进为目的。请勿发布不友善或者负能量的内容,与人为善,比聪明更重要!