আমার একটি কাস্টম সংগ্রহ রয়েছে যা আমি তৈরি করা তারিখ অনুসারে ফিল্টার করতে চাই এবং হিট এন্ট্রিগুলি "গতকাল" তৈরি করেছে
সংগ্রহের এন্ট্রি
//dates are set in controller using
setCreatedTime(Mage::getModel('core/date')->gmtDate());
গতকাল তৈরি হয়েছে (কাজ করে না)
//3 products items Yesterday
//below filtering outputs incorrect entries
$collection = Mage::getModel('things/things')->getCollection();
আমি চেষ্টা করেছি, কিন্তু ভুল এন্ট্রি আউটপুট;
//thought strtotime('yesterday') would work..
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('yesterday'))));
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('-1 day'))));
$collection->addFieldToFilter('created_time', array('from'=> strtotime('-1 day', time()),'to'=> time(),'datetime' => true));
$fromDate = date('Y-m-d H:i:s', strtotime($fromDate));
$toDate = date('Y-m-d H:i:s', strtotime($toDate));
$collection->addFieldToFilter('created_time', array('from'=>$fromDate, 'to'=>$toDate));
আজ তৈরি (বর্তমান দিন) (কাজ)
//5 products items today with timestamp 2016-05-01 05:22:53
//below filtering outputs correct entries
$collection = Mage::getModel('things/things')->getCollection();
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('today'))));
গত সপ্তাহে তৈরি হয়েছে (কাজ)
//23 products items with timestamps for this week
//below filtering outputs correct entries
$collection = Mage::getModel('things/things')->getCollection();
$collection->addFieldToFilter('created_time', array('gt' => Mage::getModel('core/date')->date('Y-m-d H:i:s', strtotime('-1 week'))));