请问如何修改php服务器时间 用来测试我们对时间的算法是否正确

WBOY
Release: 2016-06-06 20:35:22
Original
1301 people have browsed it

请问如何修改php服务器时间 用来测试我们对时间的算法是否正确
不是修改时区 可以修改具体的时间吗 比如服务器日期和时间

回复内容:

请问如何修改php服务器时间 用来测试我们对时间的算法是否正确
不是修改时区 可以修改具体的时间吗 比如服务器日期和时间

为什么一定要修改服务器时间呢?

<code>//服务器时间代码
date_default_timezone_set("PRC");
$data =  date("Y-m-d l H:i:s A");
function ($data){....}
</code>
Copy after login
<code>//测试代码
date_default_timezone_set("PRC");
//$data =  date("Y-m-d l H:i:s A");
$data = '2015-4-27 17:59:56';//自定义赋值
function ($data){....}
</code>
Copy after login
Related labels:
php
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template