以下是一些示例代碼,展示如何在PHP中獲取當前時間:
$current_time = date("Y-m-d H:i:s");
echo $current_time;
$current_timestamp = time();
$current_time = date("Y-m-d H:i:s", $current_timestamp);
echo $current_time;
$current_time = new DateTime();
echo $current_time->format("Y-m-d H:i:s");
require 'vendor/autoload.php'; // 引入Carbon庫
use Carbon\Carbon;
$current_time = Carbon::now();
echo $current_time->toDateTimeString();
這些代碼中,都使用了常見的日期格式(年-月-日 時:分:秒)來格式化輸出當前時間。您可以根據自己的需要,選擇適合的代碼來獲取當前時間。