使用HTML使用dd / mm / yyyy的日期格式

时间:2018-05-27 20:55:51

标签: php html css html5 tags

我只想使用输入标记在HTML中使用dd / mm / yyyy日期格式(附加)。

Image 1

解决方案应该与HTML相关。 目前,在第一张图片中,您将看到我正在获得此输出,但我需要获得在图像二中显示的输出。

由于

2 个答案:

答案 0 :(得分:0)

尝试以下内容

  1. if the html version used is html5, then try this
      <input type="date" name="from">
      <input type="date" name="to">
  2. or change the date format in php like
       <?php
           date_default_timezone_set('Asia/Calcutta');
           $date = new DateTime('2018-01-31');
           $new_date = $date->format('d/m/Y');
           echo $new_date;
       ?>

答案 1 :(得分:-1)

好看看:

<?php echo date('dd-mm-YYYY', '2018-01-31') ?>

此代码显示:31-01-2018