我是cakephp的新手,想在cakephp和jquery中转换PST中的unix时间。 请告诉我默认时区,以便我不必再次提及它了吗?
date_default_timezone_set("America/Los_Angeles");
我尝试通过以下方法转换它: -
$timestamp='1397147133';
date_default_timezone_set("America/Los_Angeles");
echo $str=date('d-m-Y H:i:s',$timestamp); die;
答案 0 :(得分:0)
在Cakephp中,您可以在Config文件夹下的core.php
上设置默认时区。
作为App/Config/core.php
设置date_default_timezone_set('UTC');
到date_default_timezone_set("America/Los_Angeles");
答案 1 :(得分:0)
执行此操作的最佳方法是编辑cakephp中core.php文件中的默认时区设置。
您将在位置" app / config / core.php"中找到此文件。
/**
* Uncomment this line and correct your server timezone to fix
* any date & time related errors.
*/
//date_default_timezone_set('UTC');
替换' UTC'使用您最喜爱的时区并取消注释。
对于jQuery,您可以使用以下插件:momentjs