php变量日期格式

时间:2015-08-05 08:11:37

标签: php date variables strtotime

我有一个变量 $ date

其中包含以下格式的日期: '2015年8月24日星期一'

或作为strtotime: '1440716400'

我想将其更改为以下格式: '24 / 08 / 2015'

我该怎么办呢?

2 个答案:

答案 0 :(得分:1)

只需date()

$timestamp = strtotime('Monday, 24 August 2015');
echo date("d/m/Y", $timestamp); // Here you put the format you want

答案 1 :(得分:0)

尝试

date("d/m/Y", strtotime('Monday, 24 August 2015'));