Set timezone in PHP and MySQL

前端 未结 6 1381
闹比i
闹比i 2020-11-30 04:29

I am making an application where I need to store th date in MySQL using the PHP date() function.



        
6条回答
  •  离开以前
    2020-11-30 04:55

    The best method Set timezone in PDO MySQL:

    new PDO('mysql:host=localhost;dbname=nametable', 'username', 'password', [PDO::MYSQL_ATTR_INIT_COMMAND =>"SET NAMES utf8;SET time_zone = 'Europe/Rome'"]);

提交回复
热议问题