我有一个产品到期清单。在此列表中,我将仅显示到期前3天的产品。这意味着今天18-10-2011列表将显示的产品是到期日为22-10-2011的产品。
我使用
获得产品的到期日期$input = date('d-m-y', strtotime(get_post_meta($post->ID, 'liksi', true)));
我的想法是
if product_expiring_date (this is $input) is 3 days or less after current date
then { }
如何使用“真实代码”进行检查?
答案 0 :(得分:1)
只做
$expires = strtotime(get_post_meta($post->ID, 'liksi', true));
$input = date('d-m-y', $expires);
if ($expires < strtotime('+3 days')) {
// Do stuff
}