\views\default\project\publish.tpl.htm
这是活动发布页面的活动开始时间格式代码
<dl class="clearfix">
<dt><strong>*</strong>开始时间:</dt>
<dd class="start-time">
<input type="hidden" name="start_time" value="">
<input type="text" class="form-control form-mini pull-left date-picker" value="<?php if ($this->project_info['start_time']) echo $this->project_info['start_time']; ?>" />
<span class="pull-left"> - </span>
<input type="text" class="form-control form-mini pull-left unix-time" value="<?php if ($this->project_info['start_time']) echo $this->project_info['start_time']; ?>" placeholder="格式: 00:00:00" >
<span class="text-color-999">(注意:请以 24 小时格式输入)</span>
</dd>
<div class="col-sm-8">
<label class="label label-danger hide">请选择活动时间</label>
</div>
</dl>
这段代码对应的值
我现在在\views\default\project\index.tpl.htm输出时间
<?php echo date('Y年m月d日', $this->project_info['start_time']); ?>
现在出现问题:只有填了格式内的00:00:00才能输出正确的年月日,不填的话输出的是1970年1月1日。
我现在想不填格式内的00:00:00,也就是把下面这段代码去掉,依然能正确显示年月日,该怎么做?
——————————————————————————————————————————————————————————————
已解决,不会弄,用了笨办法,设定时间格式的value值,然后让div不显示。。。。。
阅读全文
收起全文