标签: php datetime yii2
我想使用课程DateTime,但PHPStorm告诉我"Undefined class DateTime"和我的PHP版本是5.5.9-1。 我使用的是PHPStorm版本2016.1,而且我正在使用Yii2 framework(如果它能为您提供任何有用的信息)。那么我如何使用正确的lint默认PHP类?
DateTime
PHPStorm
"Undefined class DateTime"
5.5.9-1
2016.1
Yii2 framework
答案 0 :(得分:13)
您需要使用反斜杠\DateTime或添加use DateTime;
\DateTime
use DateTime;