Home >Backend Development >PHP Tutorial >中文时间显示的程序_PHP

中文时间显示的程序_PHP

WBOY
WBOYOriginal
2016-06-01 12:42:51878browse

$cweekday = array("星期日","星期一","星期二","星期三","星期四","星期五","星期六");
$now = getdate(time());
$cur_wday=$now['wday'];
$showtime = date("北京时间Y年m月d日H时i分s秒 $cweekday[$cur_wday]");
echo $showtime;
?>

Statement:
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