在PHP中,可以使用strtotime()
函數將日期字符串轉換為時間戳。這是一個簡單的示例:
<?php
// 日期字符串
$date_string = "2021-06-01";
// 使用strtotime()函數將日期字符串轉換為時間戳
$timestamp = strtotime($date_string);
// 輸出結果
echo $timestamp; // 結果為:1622438400
?>
如果你需要將當前日期和時間轉換為時間戳,可以直接使用time()
函數:
<?php
// 獲取當前日期和時間的時間戳
$current_timestamp = time();
// 輸出結果
echo $current_timestamp; // 結果為當前日期和時間的時間戳
?>