• 2022-07-26
    用PHP打印出前一天的时间格式是2020-5-10 22:21:21( )。
    A: echo getdate(‘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’));