Source Code:
(back to article)
<?php // Set the timezone to "Asia/Tokyo" date_default_timezone_set('Asia/Tokyo'); // Get the current date and time in the specified timezone $currentDateTime = date('Y-m-d H:i:s'); echo $currentDateTime;
Result:
Report an issue