1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2019/3/29
- * Time: 下午4:59
- */
- namespace app\main\constants;
- class TemplateMsgConstants
- {
- /**
- * 获取模板消息累计UV
- * @param $template_id
- * @return string
- */
- public static function getTemplateUvKey($template_id){
- return "TP_UV:{$template_id}";
- }
- /**
- * 获取模板消息当天UV
- * @param $template_id
- * @param $time
- * @return string
- */
- public static function getTemplateUvToDayKey($template_id,$time = null){
- $date_time = $time ? date('Ymd',$time) : date('Ymd');
- return "TP_UV_T:{$date_time}:{$template_id}";
- }
- /**
- * 获取模板消息当天Money
- * @param $template_id
- * @param $time
- * @return string
- */
- public static function getTemplateRechargeMoneyToDayKey($template_id,$time = null){
- $date_time = $time ? date('Ymd',$time) : date('Ymd');
- return "TP_MONEY_T:{$date_time}:{$template_id}";
- }
- }
|