Php help
#1

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;
	}
}
Reply
#2

So just do what the warning says and set a timezone with date_default_timezone_set
Reply
#3

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.
Reply
#4

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
Reply
#5

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
Reply
#6

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.
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)