php 时间函数2022-05-04 10:55:01<?php date_default_timezone_set(“prc”); $stringtime = date(“Y-m-d H:i:s”,time()); echo $stringtime.”<br/>”; echo strtotime($stringtime).”<br/>”; echo date(“Y/m/d G:i:s A”,strtotime($stringtime)); ?> 上一篇:PHP 从字符串右端移除字符下一篇:Java编程入门——异步事件:轮询与中断