我不敢相信我无法做到这一点,但我希望能够将当前日期和时间从php存储到mysql表中。
表中的列是类型datetime。我已经试过了
$current_date = date("Y-m-d"); $my_date = strtotime($current_date); INSERT INTO my_table (date_time) VALUES ('$my_date')
但是我的时间戳记为0000-00-00 00:00:00
这一定很容易做到,但我无法使其正常运行!我想使用来自php的时间戳,而不是使用mysql now()函数
不要将其另存为Unix Timestamp(strtotime()输出),而是另存为DATETIME列中的“ 2012-12-02 13:00”。
strtotime()