Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道 php time() 函数。但我只想让它返回当前时间。没有其他的。
16:23. 没有下午,没有上午,没有日期,没有秒。我怎样才能做到这一点?
16:23
您可以通过格式化字符来做到这一点:
echo date("H:i");
看这里。