php中的时间函数

时间:2010-03-05 00:41:13

标签: php mysql

不知怎的,我设法使日期有效,

<td width="67"><font size="3"><b>*Date</b></td>
<td width="3">:</td>
<td width="168"><input name="adate" type="text" id="adate" maxlength="20" value="<?php  echo date("Y/m/d") . "<br />"; ?>">

如何以这种形式回显时间:

  <td width="67"><font size="3"><b>*Time</b></td>
    <td width="3">:</td>
    <td width="168"><input name="adtime" type="text" id="adtime" maxlength="15">

    </td>

3 个答案:

答案 0 :(得分:2)

只需使用日期功能,但输出小时/分钟/秒......

echo date('H:i:s');

Date Function

答案 1 :(得分:1)

  

如果您使用PHP编程我的建议   使用像CodeIgniter这样的框架,   CakePHP或Zend。只是不要编码   除非你,否则凭空刮擦   实际上需要。

答案 2 :(得分:0)

取决于您想要的格式。

php date() function有许多不同的表达时间的方式。如果您只想要HH:MM:SS,您可以这样做:

<td width="168"><input name="adtime" type="text" id="adtime" maxlength="15" value="<?php  echo date("H:i:s") ?>">