标签: php
我有以下功能
$incident_Id = mysql_insert_id ();
此功能以顺序形式输出数字。
我想以这种格式输出数字:
答案 0 :(得分:0)
您可以简单地将其与日期功能合并,如下所示。
$incident_Id = date("Ym").mysql_insert_id (); echo $incident_Id;