标签: php
如果以下代码我想使用变量而不是实际日期。
echo date('z', strtotime('13 may '));
如何使用变量:
$month = "may"; $day = "13";
答案 0 :(得分:0)
官方PHP文档中的String Operators部分可以为您提供帮助。
$month = "may"; $day = "13"; echo date('z', strtotime($day . ' ' . $month . ' '));