strtotime

MX007發表於2019-07-16
  • 直接看程式碼吧:

        echo date('Y-m-d',strtotime('-1 month',strtotime('2019-03-31'))),PHP_EOL;\
        //outputs: 2019-03-03\
        echo date('Y-m-d',strtotime('last day of last month',strtotime('2019-03-31'))),PHP_EOL;\
        //outputs: 2019-02-28
    
  • 鳥哥寫的文章:令人疑惑的strtotime

本作品採用《CC 協議》,轉載必須註明作者和本文連結