在magento中獲取準確的當前時間

2021-05-24 10:47:22 字數 637 閱讀 7175

問題:如何在magento中獲取系統當前時間?

//this time will not match your server time

$now = time();

echo date('m/d/y h:i:s', time());

如果你試圖在magento裡面通過下面的方式來獲取系統的當前時間的話,那麼你可能會對你得到的結果感到比較迷惑。:-)

date_default_timezone_set(mage_core_model_locale::default_timezone);

原因找到以後,問題就好辦了。

$now= mage::getmodel('core/date')->timestamp(time());

echodate('m/d/y h:i:s',$now);

ok,that's all. :-)

在C 中獲取印表機的當前狀態

要獲得印表機的狀態,應該定義乙個聯合.enum printerstatus 其中的 正在列印 和 列印中 是同乙個意思,至於為什麼會是這樣,目前還不知道.在程式中新增system.management的引用 using system.management 然後編寫獲取印表機狀態的函式如下 獲取印表機...

Magento在CMS Page中增加使用者資訊變數

magento的cms頁面和static block頁面中可以用一些指示符來得到相應的資訊,如 等。在mage cms block page類的 tohtml方法中可以找到下面的 view plain copy to clipboard print?helper mage helper cms pr...

Magento在CMS Page中增加使用者資訊變數

magento的cms頁面和static block頁面中可以用一些指示符來得到相應的資訊,如 等。在mage cms block page類的 tohtml方法中可以找到下面的 helper mage helper cms processor helper getpagetemplateproce...