我试图将Zend_Date
类用于我的项目。我正在使用PHP Storm IDE,并且我已经搜索了整个ZF2文件夹,该文件夹包含在我的项目中:
/vendor/ZF2/library/Zend/ -> now it should be somewhere here but I couldnt've find it in the folder structure...
我还尝试在代码中执行以下操作:
$date = new Zend_Date();
但它打印出以下错误:
Undefined class Zend_Date
我应该在哪里找到Zend_Date
课程,如果它不包含在我的文件夹结构中,我在哪里可以获得它?
答案 0 :(得分:0)
Zend_Date
是来自Zend Framework 1的类。您似乎正在使用Zend Framework 2.不要混用ZF1和ZF2功能。
ZF2(DateTime
)中有一个Zend\Stdlib\DateTime
类,但自ZF 2.1.4起已被弃用。请改用PHP DateTime
类。可以找到文档here on php.net。