This repository has been archived on 2024-07-11. You can view files and clone it, but cannot push or open issues or pull requests.
yoshop/source/application/api/service/User.php

36 lines
751 B
PHP
Raw Normal View History

2020-04-25 22:20:29 +08:00
<?php
namespace app\api\service;
use think\Cache;
class User
{
/**
* 记忆上门自提联系人
* @param $userId
* @param $linkman
* @param $phone
* @return bool
*/
public static function setLastExtract($userId, $linkman, $phone)
{
// 缓存时间30天
$expire = 86400 * 30;
return Cache::set("{$userId}_LastExtract", compact('linkman', 'phone'), $expire);
}
/**
* 记忆上门自提联系人
* @param $userId
* @return mixed
*/
public static function getLastExtract($userId)
{
if ($lastExtract = Cache::get("{$userId}_LastExtract")) {
return $lastExtract;
}
return ['linkman' => '', 'phone' => ''];
}
}