How to setup timezone xampp mysql and apache?

后端 未结 4 877
没有蜡笔的小新
没有蜡笔的小新 2021-01-01 04:32

I am using XAMPP - PHP and MYSQL servers. When I tried to use following -

getRates(date(\'Y-m-d\'));



function getRates($cDate)
{
$query = \"SELECT * FROM         


        
4条回答
  •  再見小時候
    2021-01-01 04:50

    Please add this code on your top page.

    date_default_timezone_set('America/Los_Angeles');
    

    Search your country here http://php.net/manual/en/timezones.php

提交回复
热议问题