在 php 中,当我使用此功能时:
$today = date("dmY");
它给了我想要的日期,但没有空格或像这样的分隔符:
02042013
当我添加分隔符时,它会减去数字
$today = date("d-m-Y");
outputs: -2013 because it does day minus month minus year
为什么?通常这可以正常工作。谢谢,洛朗
注意:我正在使用安装在我的本地主机 Mac os X 10.8 上的 apache 和 php