共计 544 个字符,预计需要花费 2 分钟才能阅读完成。
以下是一些示例代码,展示如何在 PHP 中获取当前时间:
- 使用 date 函数获取当前时间:
$current_time = date("Y-m-d H:i:s");
echo $current_time;
- 使用 time 函数获取当前时间的时间戳,并通过 date 函数格式化输出:
$current_timestamp = time();
$current_time = date("Y-m-d H:i:s", $current_timestamp);
echo $current_time;
- 使用 DateTime 类获取当前时间:
$current_time = new DateTime();
echo $current_time->format("Y-m-d H:i:s");
- 使用 Carbon 库获取当前时间(需要先安装 Carbon 库):
require 'vendor/autoload.php'; // 引入 Carbon 库
use Carbon\Carbon;
$current_time = Carbon::now();
echo $current_time->toDateTimeString();
这些代码中,都使用了常见的日期格式(年 - 月 - 日 时: 分: 秒)来格式化输出当前时间。您可以根据自己的需要,选择适合的代码来获取当前时间。
丸趣 TV 网 – 提供最优质的资源集合!
正文完