• 2022-07-26
    用PHP打印出前一天的时间,格式是2006-5-10 22:21:21。
    A: echo date('Y-m-d h:i:s', strtotime('-1 days'));
    B: echo date('Y-m-d H:i:s', strtotime('-1 days'));
    C: echo date('Y-m-d h:i:s', strtotime('+1 days'));
    D: echo date('Y-m-d H:i:s', strtotime('+1 days'));