输出格式化年月号

时间:2016-12-19 07:53:35

标签: php

我有以下功能

$incident_Id = mysql_insert_id ();

此功能以顺序形式输出数字。

我想以这种格式输出数字:

  • 年,然后
  • 月,然后
  • 事件的数量。

1 个答案:

答案 0 :(得分:0)

您可以简单地将其与日期功能合并,如下所示。

$incident_Id = date("Ym").mysql_insert_id ();

echo $incident_Id;