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