Show current local time in PHP
Show current time with specified timezone and specified format.
Please refer to the following URL how to specify the format.
http://php.net/manual/ja/function.date.php
show_current_local_time.php
<?php
// Set time zone
date_default_timezone_set('Asia/Tokyo');

// Show current time
echo date("Y/m/d H:i:s\r\n");
?>

      
Result
$ php show_current_local_time.php
2014/12/27 23:51:13