美文网首页
MAGENTO中的日期问题

MAGENTO中的日期问题

作者: 帅马 | 来源:发表于2015-11-16 16:10 被阅读114次

今天做了一个关于添加产品时间属性,让日期小于当前日期时,pdp页面显示当前产品xx时候开始销售,请等待…
1.建立magento日期属性
2.获取当前产品的日期属性
3.获取当前时间
4.转化时间进行比较

                <?php
                    $startDate = $_product->getResource()->getAttribute('sale_from_date')->getFrontend()->getValue($_product);
                    $endDate = date('Y-m-d');
                    $starDate = strtotime(strval($startDate));
                    $endDate = strtotime($endDate);
                ?>
                <?php
                    $startDate = $_product->getResource()->getAttribute('sale_from_date')->getFrontend()->getValue($_product);
                    $endDate = date('Y-m-d');
                    $starDate = strtotime(strval($startDate));
                    $endDate = strtotime($endDate);
                ?>

相关文章

网友评论

      本文标题:MAGENTO中的日期问题

      本文链接:https://www.haomeiwen.com/subject/libkhttx.html