dsuw85815 2017-07-20 14:09
浏览 666
已采纳

PHP - 将日期转换为YYYY-MM-DDTHH:MM:SS

I was wondering if it was possible to format todays date to below format:

YYYY-MM-DDTHH:MM:SS

It's important that the "T" is preserved, like this:

2017-07-20T00:00:00

Below I have:

$invoice_date = date('Y-m-d H:i:s');

I can't figure out how to add the "T" in between.

  • 写回答

3条回答

  • doutui6241 2017-07-20 14:12
    关注

    T is a format character so you can't use it directly. Escape it (\T) to get a literal T character:

    http://php.net/manual/en/function.date.php

    You can prevent a recognized character in the format string from being expanded by escaping it with a preceding backslash.

    $invoice_date = date('Y-m-d\TH:i:s');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 双层网络上信息-疾病传播
  • ¥50 paddlepaddle pinn
  • ¥20 idea运行测试代码报错问题
  • ¥15 网络监控:网络故障告警通知
  • ¥15 django项目运行报编码错误
  • ¥15 请问这个是什么意思?
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样