>  기사  >  백엔드 개발  >  'model' => AppUser::class,最后这class是啥意思?

'model' => AppUser::class,最后这class是啥意思?

WBOY
WBOY원래의
2016-06-23 13:20:312054검색

::class是啥意思?


'users' => [
            'driver' => 'eloquent',
            'model' => App\User::class,
        ],


搜半天不知道搜啥关键词。。


回复讨论(解决方案)

应该是user这个类下面的一个静态属性

App\User::class 返回类名 “App\User”

App\User::class 返回类名 “App\User”



感谢!根据您的返回类名4个字搜索了下。
PHP5.5t特性,获取完整类名称  

PHP5.3 中引入命名空间的别名类和命名空间短版本的功能。虽然这并不适用于字符串类名称  

use Some\Deeply\Nested\Namespace\FooBar;    // does not work, because this will try to use the global `FooBar` class    $reflection = new ReflectionClass('FooBar');   echo FooBar::class;  


为了解决这个问题采用新的FooBar::class语法,它返回类的完整类别名称  
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.