温馨提示×

php转时间戳怎样使用

PHP
小樊
82
2024-11-21 06:38:09
栏目: 编程语言

在PHP中,可以使用strtotime()函数将日期字符串转换为时间戳。这是一个简单的示例:

<?php
// 日期字符串
$date_string = "2021-08-01";

// 使用strtotime()函数将日期字符串转换为时间戳
$timestamp = strtotime($date_string);

// 输出结果
echo "时间戳: " . $timestamp; // 结果: 1627929600
?>

如果你需要将时间戳转换为日期字符串,可以使用date()函数。例如:

<?php
// 时间戳
$timestamp = 1627929600;

// 使用date()函数将时间戳转换为日期字符串
$date_string = date("Y-m-d", $timestamp);

// 输出结果
echo "日期字符串: " . $date_string; // 结果: 2021-08-01
?>

这两个函数在处理日期和时间时非常有用,可以帮助你轻松地在不同的格式之间转换。

0