Variabel waktu Magento

Bagaimana cara mengatur notasi waktu menjadi:

Hari - Bulan - Tahun (dalam notasi belanda)

dengan fungsi: <?php echo $_product->getSpecialTODate();?>

di Magento?

Notasi saat ini: Tahun-Bulan-Hari waktu:waktu:waktu


person Thijs Kempers    schedule 04.12.2014    source sumber


Jawaban (2)


Memperbaikinya: <?php echo date('d F Y', strtotime($specialPriceToDate)); ?>

person Thijs Kempers    schedule 04.12.2014

Coba ikuti potongan kode alih-alih kode Anda <?php echo Mage::helper('core')->formatDate($_product->getSpecialTODate(), 'short', false); ?>

person Emipro Technologies Pvt. Ltd.    schedule 04.12.2014