Jump to content

Date Function


gple

Recommended Posts

<?php
$date = new DateTime('now', new DateTimeZone('Your/Timezone'));
echo $date->format('Y-m-d H:i:s') . "\n";

// Example
$date = new DateTime('now', new DateTimeZone('Europe/Helsinki'));
echo $date->format('Y-m-d H:i:s') . "\n";
// 2010-12-28 17:38:45
?>

Link to comment
https://forums.phpfreaks.com/topic/222827-date-function/#findComment-1152163
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.