mirror of
https://github.com/fspc/Yellow-Bike-Database.git
synced 2025-02-23 01:03:23 -05:00
This closes #25!
* Requires mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
This commit is contained in:
parent
68061f3408
commit
104de44dc5
@ -479,6 +479,17 @@ function currency_format($value, $places = 2){
|
|||||||
else echo number_format($value,$places);
|
else echo number_format($value,$places);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// function to set time zone in mysql.
|
||||||
|
// Time zones must be setup in mysql for this to work: mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql -u root mysql
|
||||||
|
set_time_zone();
|
||||||
|
function set_time_zone() {
|
||||||
|
global $database_YBDB, $YBDB;
|
||||||
|
|
||||||
|
mysql_select_db($database_YBDB, $YBDB);
|
||||||
|
$query = "SET time_zone='" . TIMEZONE . "';";
|
||||||
|
$Recordset1 = mysql_query($query, $YBDB) or die(mysql_error());
|
||||||
|
}
|
||||||
|
|
||||||
//function to convert server time to local time. To be used by all other current date / time requests.
|
//function to convert server time to local time. To be used by all other current date / time requests.
|
||||||
function local_datetime(){
|
function local_datetime(){
|
||||||
date_default_timezone_set(TIMEZONE);
|
date_default_timezone_set(TIMEZONE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user