0

我正在尝试从 php 中的计算机系统中获取时间,并且我希望它与计算机中的完全一样,而不是其他格式。

我已经在 javascript 中做到了,但它是客户端,我想要服务器端。所以我在php中尝试它。

在php中可以吗?

4

3 回答 3

2

如果您指的是服务器(运行 PHP 的机器)的日期/时间,您可以使用该date函数。

直接来自PHP 文档

<?php
// Assuming today is March 10th, 2001, 5:16:18 pm, and that we are in the
// Mountain Standard Time (MST) Time Zone

$today = date("F j, Y, g:i a");                 // March 10, 2001, 5:16 pm
$today = date("m.d.y");                         // 03.10.01
$today = date("j, n, Y");                       // 10, 3, 2001
$today = date("Ymd");                           // 20010310
$today = date('h-i-s, j-m-y, it is w Day');     // 05-16-18, 10-03-01, 1631 1618 6 Satpm01
$today = date('\i\t \i\s \t\h\e jS \d\a\y.');   // it is the 10th day.
$today = date("D M j G:i:s T Y");               // Sat Mar 10 17:16:18 MST 2001
$today = date('H:m:s \m \i\s\ \m\o\n\t\h');     // 17:03:18 m is month
$today = date("H:i:s");                         // 17:16:18
$today = date("Y-m-d H:i:s");                   // 2001-03-10 17:16:18 (the MySQL DATETIME format)
?>

如果您的意思是从客户的计算机上,那么它就无法完成。PHP是服务器端的。

于 2012-11-01T07:24:50.097 回答
1

从客户的计算机。

浏览器不会随每个请求发送当前时间,因此在服务器上运行的 PHP 无法知道客户端时钟设置为什么(除非您使用 JavaScript(或您可以使用客户端的其他技术)来收集时间和向明确包含它的服务器发出 HTTP 请求)。

于 2012-11-01T07:25:24.170 回答
0

PHP 是一种在服务器端执行的语言,客户端计算机从未见过的代码。您试图解决的问题无法用 PHP 完成。要获取运行 PHP 的服务器的日期/时间,请参阅以下内容:http: //php.net/manual/en/function.getdate.php

于 2012-11-01T07:51:05.130 回答