Jump to content
MakeWebGames

Recommended Posts

Posted

to what? your local time??

most games will display the server time so depending on where your server is that will be the time displayed.

You can change it though. You will need to state to what timezone.

Posted
date_default_timezone_set('GMT');

Source: PHP Manual: Date

Or

<?php
$timezone = new DateTimeZone( "Europe/London" );
$date = new DateTime();
$date->setTimezone( $timezone );
echo  $date->format( 'H:i:s A  /  D, M jS, Y' );
?> 

Source: PHP Manual: Date(comments)

Just Two ways you can do it.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...