当前位置:Gxlcms > PHP教程 > $now=newDateTime;报错,奇怪了

$now=newDateTime;报错,奇怪了

时间:2021-07-01 10:21:17 帮助过:28人阅读

$now = new DateTime;出错,奇怪了。
在使用命名空间时下面语句显示没有找到:
$now = new DateTime;出错

---
Class 'User\Action\DateTime' not found
------解决方案--------------------
DateTime 是 php 内置的类,不隶属于任何命名空间
如果你需要在命名空间中使用须有 \ 声明
namespace User\Action;
$now = new \DateTime;
print_r($now);
DateTime Object
(
[date] => 2014-05-11 15:43:30
[timezone_type] => 3
[timezone] => Asia/Shanghai
)

人气教程排行