在Array内部格式化PHP中的MYSQL日期

时间:2015-11-25 19:51:00

标签: php mysql

当我有这样的数组时,如何将日期格式化为m-d-Y?

while ($row = $result->fetch_assoc()) {
    echo '<div>' . $row['date'] . '</div><hr/><br/>';

    $array[] = $row['need'];
}

2 个答案:

答案 0 :(得分:1)

取决于您希望如何格式化。这是一个例子。

<?php echo date('m d, Y',strtotime($row['date']))?>

答案 1 :(得分:1)

使用strtotime()和date():

$newdate = date('m-d-Y',strtotime($row['date']))