我有一个带有字段的表:
'last_modified - 时间戳不为空'
- 我将默认值设置为当前时间戳。但是,这只适用于从 phpMyAdmin 而不是我的脚本更新或插入时。
我试过了
$sql = sprintf("UPDATE %s SET timestamp=now(), %s WHERE id='%s'", $table, $implodeArray, $_POST['id']);
它似乎仍然不起作用。当我从脚本更新或按表插入时,如何进行时间戳更新?
还有一个脚本输出示例:
UPDATE about SET timestamp=now(), page_header = 'Page header goes here', sub_header = 'Sub header goes here', content_short = '这是关于页面的简短描述', content = '这是完整的内容描述去'WHERE id='1'