2015-11-04 62 views
0

我是codeigniter的新手,我想知道在插入codeigniter中的表之前是否有將整數轉換爲時間的方法?因爲我有這種錯誤。錯誤編號:22018將int轉換爲時間Codeigniter

[Microsoft][ODBC Driver 11 for SQL Server][SQL Server]Operand type clash: int is incompatible with time 

INSERT INTO ScheduleDummy (Sched_Day, Sched_StartTime, Sched_EndTime) VALUES (0, 0, 0) 

Filename: E:\Xampp\htdocs\Student\system\database\DB_driver.php 

Line Number: 331 
+1

php的[日期功能](http://php.net/manual/en/function.date.php)是你的朋友。 – Jerry

+0

添加您的插入功能 –

回答

0

嘗試使用strtotime php函數。這將是有益的