converting a time to a different timezone with php

前端 未结 6 2006
鱼传尺愫
鱼传尺愫 2020-12-11 17:38

$timeposted = \"7:10pm\";

This value is currently Canada time (quebec). I\'m trying to find a way to convert it to France\'s time. How can i do that ?

6条回答
  •  [愿得一人]
    2020-12-11 18:05

    You can use date_default_timezone_set function to change loacal time zone

    Example

    date_default_timezone_set('Europe/Paris');
    

提交回复
热议问题