如何在date()函数中使用变量

时间:2017-05-13 21:31:54

标签: php

如果以下代码我想使用变量而不是实际日期。

echo date('z', strtotime('13  may '));

如何使用变量:

$month = "may";
$day = "13";

1 个答案:

答案 0 :(得分:0)

官方PHP文档中的String Operators部分可以为您提供帮助。

$month = "may";
$day = "13";

echo date('z', strtotime($day . '  ' . $month . ' '));