date_default_timezone_set()

Irrespective of time zone set in php.ini file , we can set the time zone of the server for our script by using date_default_timezone_set() function.
The list of applicable time zone identifier is available here.
Here is the sample code to set the time zone.

<?Php
echo date_default_timezone_set();
?>
We can set it like this
date_default_timezone_set('America/Chicago');
After setting the time zone , you can read the same by using date_default_timezone_get() function.

Setting the time zone in php.ini file

You can set the default time zone at php.ini file. If you are using for first time then search for the line saying
;date.timezone =
Change it to
date.timezone ="Asia/Calcutta";
You can change the area as per your requirement by using time zone identifier .
PHP Date Functions date_default_timezone_get() get the time zone
Subscribe to our YouTube Channel here


Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com







    Post your comments , suggestion , error , requirements etc here





    PHP video Tutorials
    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer