In php is there a way to turn two integers (09 and 30) into into type time (9:30). I need this function so I can INSERT these number into a column in MySQL of type time.
5条回答 默认 最新
douweibeng5219 2011-07-29 01:37关注$datetime = new DateTime(); $datetime->setTime(9, 30, 0);本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报