sql >> Database >  >> RDS >> Mysql

Tijdzone instellen in PHP en MySQL

In PHP:

<?php
define('TIMEZONE', 'Europe/Paris');
date_default_timezone_set(TIMEZONE);

Voor MySQL:

<?php
$now = new DateTime();
$mins = $now->getOffset() / 60;
$sgn = ($mins < 0 ? -1 : 1);
$mins = abs($mins);
$hrs = floor($mins / 60);
$mins -= $hrs * 60;
$offset = sprintf('%+d:%02d', $hrs*$sgn, $mins);

//Your DB Connection - sample
$db = new PDO('mysql:host=localhost;dbname=test', 'dbuser', 'dbpassword');
$db->exec("SET time_zone='$offset';");

De PHP- en MySQL-tijdzones zijn nu gesynchroniseerd binnen uw applicatie. U hoeft niet voor php.ini te gaan of MySQL-console!

Dit komt uit dit artikel over SitePoint .



  1. Sessietijdzone instellen met spring jdbc oracle

  2. Postgres analoog naar CROSS APPLY in SQL Server

  3. JSON_UNQUOTE() – Verwijder aanhalingstekens uit een JSON-document in MySQL

  4. Wat is er nieuw in ProxySQL 2.0