{site_name}

{site_name}

🌜 搜索

在PHP中,DateTime::getTimestamp()方法用于获取DateTime对象的UNIX时间戳

php 𝄐 0
php datetime类的引入
在PHP中,DateTime::getTimestamp()方法用于获取DateTime对象的UNIX时间戳。UNIX时间戳是指自1970年1月1日以来的秒数。

以下是一个示例,演示如何使用DateTime::getTimestamp()方法:

php
$dateTime = new DateTime('2022-01-01 12:00:00');
$timestamp = $dateTime->getTimestamp();

echo "UNIX时间戳为:" . $timestamp;


上述代码中,我们首先创建了一个DateTime对象,表示2022年1月1日12:00:00。然后,我们使用getTimestamp()方法获取该DateTime对象的UNIX时间戳,并将结果打印出来。

输出将是:


UNIX时间戳为:1641033600


请注意,getTimestamp()方法返回的是一个整数,表示自1970年1月1日以来的秒数。