Php help -
Face9000 - 26.03.2016
I'm getting this warning:
Quote:
Message: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected the timezone 'UTC' for now, but please set date.timezone to select your timezone.
|
In this code:
Код:
if ( ! function_exists('unix_to_human'))
{
function unix_to_human($time = '', $seconds = FALSE, $fmt = 'us')
{
$r = date('Y', $time).'-'.date('m', $time).'-'.date('d', $time).' ';
if ($fmt == 'us')
{
$r .= date('h', $time).':'.date('i', $time);
}
else
{
$r .= date('H', $time).':'.date('i', $time);
}
if ($seconds)
{
$r .= ':'.date('s', $time);
}
if ($fmt == 'us')
{
$r .= ' '.date('A', $time);
}
return $r;
}
}
Re: Php help -
Mauzen - 26.03.2016
So just do what the warning says and set a timezone with date_default_timezone_set
Re: Php help -
SchurmanCQC - 27.03.2016
Quote:
Originally Posted by Mauzen
So just do what the warning says and set a timezone with date_default_timezone_set 
|
Yes, yes! Follow the clues like a detective and
fix it yourself!
That is how you learn.
Re: Php help -
Face9000 - 27.03.2016
I dont wanna learn, i wanna fix it. And if i posted here is because i need help. Don't post useless things just to increase post count.
How the fuck i set a timezone and where
Fuckin php
Fuck who created it
Re: Php help -
Jstylezzz - 27.03.2016
Quote:
Originally Posted by Face9000
I dont wanna learn, i wanna fix it. And if i posted here is because i need help. Don't post useless things just to increase post count.
How the fuck i set a timezone and where
Fuckin php
Fuck who created it
|
Just place this code
PHP код:
date_default_timezone_set('America/Los_Angeles');
Somewhere on top of your script, try the first line after <?php or something. Wherever you choose to place it, do it before that if statement (before working with the time functions). You can replace America/Los_Angeles with somewhere else, a location that suits your needs.
== EDIT ==
Just dropping
this link here for if you decide you want to read up on it anyways hehe
Re: Php help -
SchurmanCQC - 27.03.2016
Quote:
Originally Posted by Face9000
Don't post useless things just to increase post count.
|
I couldn't care less about my post count. I post here maybe 5 times a month.