php中没有now()
有time() 是显示当前时间戳,
date()是格式化时间戳,按照要求格式显示,
如:
date('Y-m-d H:i:s',time());
date函数可以获取系统日期 可以格式化日期 now()函数在php中没过 只有在sql语句当中与其他语言当中用过 php没有now函数 至于now()函数是返回系统日期 例如2017-10-21 17:30:20
示例:
$sql = "insert into user (nickname,password,address,sex,age,birthday,reg_time,question,answer) values
('{$nickname}','{$password}','{$address}','{$sex}','{$age}','{$birthday}',now(),'{$question}','{$answer}');";
日志对应sql语句: