HTML5 Datetime-local Displays 01-01-1970 01:00当它为空时

时间:2015-08-17 15:22:13

标签: php mysql html5 datetime

我正在构建一个Web应用程序,并使用html5 datetime-local mysql来存储数据和php以从数据库中获取datea。 date数据类型与sql datetime一起存储,而不是null,也没有默认值。

但是当html5 datetime-local标签显示数据时,当datetime字段为空时,它会在浏览器中显示01-01-1970 01:00。

我的问题是,当字段为空时,我想显示00-00-0000 00:00。

以下是html5和php的代码段。

<?PHP

session_start();

if (!(isset($_SESSION['login_user']) && $_SESSION['login_user'] != '')) {

header ("Location: loginForm.php");

}

?>


<?php
include('/templates/header.php');
$host = "localhost"; // Host name 
$username = "root"; // Mysql username 
$password = ""; // Mysql password 
$db_name = "datacentre"; // Database name 
$tbl_name = "data_centre_users"; // Table name 
$server_name = "localhost";

// Create connection
$con = new mysqli($server_name, $username, $password, $db_name, 3306);
if($con->connect_error){
   die("Connection failed: ".$con->connect_error);
}

// Check connection
if($con->connect_error){
 die("Connection failed: ".$conn->connect_error);
}

$sql = "SELECT * FROM admin";
$result = $con->query($sql);


function myDate($x){

  return strftime('%Y-%m-%dT%H:%M:%S',
               strtotime($x));

}         


?>

<section id="sidebar">

</section>

<section id="content">

<div id="scroll-table">
<table >
<caption>

            </caption>
            <tr>
                <th class="center"><strong>ID</strong></th>
                <th class="center"><strong>User Name</strong></th>
                <th class="center"><strong>Time Created</strong></th>
            </tr>
            <?php
            if($result->num_rows > 0){
                // output data of each row
                while($rows = $result->fetch_assoc()){ ?>
                    <tr>
                        <td class="center"><?php echo $rows['id']; ?></td>
                        <td class="center"><?php echo $rows['user_name']; ?></td>  
                        <td class="center">
                         <input name="time_created" disabled="disabled" type="datetime-local" id="time_created" value="<?php echo myDate($rows                         ['time_created']); ?>" size="15">
                        </td>
                    </tr>

                    <?php
                }
            }
            ?> 
</table>
</div>
</section>


<aside></aside>

<?php
$con->close();

include('/templates/footer.php');
?>

1 个答案:

答案 0 :(得分:2)

当传递无效值时,

strtotime()会返回false。当您尝试格式化false时,您将获得1970年1月1日的Unix Epoch。

如果您不希望显示该值,请检查$x是否不包含值,并返回空字符串或其他默认值。

相关问题