Home > php教程 > php手册 > 利用php获取服务器时间的实现代码

利用php获取服务器时间的实现代码

WBOY
Release: 2016-06-06 20:31:12
Original
926 people have browsed it

本篇文章是对使用php获取服务器时间的方法进行了详细的分析介绍,需要的朋友参考下

很多时候我们喜欢用js来获取日期和时间,网站空间,服务器空间,但这仅仅是客户端的。
我们可以用php的date函数即可来获取服务器上的时间:

复制代码 代码如下:


//将时区设置为中国
date_default_timezone_set("PRC");
echo date("Y-m-d l H:i:s A");
//例输出:2010-03-06 Saturday 11:51:29 AM
?>


,服务器空间
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template