如何转换日期格式myqsl php?

时间:2016-07-02 01:03:24

标签: php mysql datetime datetime-format

如何使用php在表mysql中转换日期格式,从这种格式2016-07-02T17:04:18 + 00:00到周六,2016年7月2日17:04:18 GMT?

非常感谢,

1 个答案:

答案 0 :(得分:-1)

将mysql中的值读取到变量info

然后使用;

var counts = 0
function hideOnIdle (video) {
  if (video.paused === true) return controls.classList.remove('hidden')
  if (counts > 7) {
    controls.classList.add('hidden')
    counts = 0
  }
  counts += 1
}

document.addEventListener('mousemove', function (event) {
  controls.classList.remove('hidden')
  counts = 0
}, false)
如果需要,

将值写回info

假设您列出的值是varchar,因为它不会显示为标准的mysql日期时间格式。 here并了解如何查询数据库。

如果值是日期时间,因为您的帖子似乎也是如此。然后尝试代码,因为strtotime应该理解格式正常。但是代码将转换并在其他地方输出日期,而不是像日期一样写回mysql,因为它不像那样工作。

也见;

Convert from MySQL datetime to another format with PHP

How to convert date from one format to another in Php