我试图使用getdate()将日期存储在变量中。我做错了什么?
$today = getdate();
echo "the date today is ".$today;
输出:今天的日期是数组
答案 0 :(得分:0)
getdate()
返回一个数组。要回显秒,您可能想尝试这个:
$getdate = getdate();
echo "there are ".$getdate['seconds']." on the minute";
查看所有密钥及其返回的内容here.
答案 1 :(得分:0)
getdate()返回一个数组,因此您可能需要执行类似
的操作echo 'The date today is '. $today['year'].'-'.$today['mon'].'-'.$today['mday'];
我更喜欢使用date():
echo 'The date today is '. date('Y-m-d');
答案 2 :(得分:0)