Monday, 5 September 2016

Get current IST time in php Display current system time in php

Set your system time correctly, so your system knows its correct timezone and the correct time there. In PHP, set your desired timezone, then just print the date:

<?php 
  date_default_timezone_set('Asia/Kolkata'); 
 echo date('d-m-Y H:i'); ?>

Get current IST time in php / display current system time in php

No comments:

Post a Comment