截流自动化的商城平台
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

ExportCache.php 2.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop100%开源免费商用商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | 开源版本可自由商用,可去除界面版权logo
  7. // | 商业版本务必购买商业授权,以免引起法律纠纷
  8. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  9. // | gitee下载:https://gitee.com/likeshop_gitee
  10. // | github下载:https://github.com/likeshop-github
  11. // | 访问官网:https://www.likeshop.cn
  12. // | 访问社区:https://home.likeshop.cn
  13. // | 访问手册:http://doc.likeshop.cn
  14. // | 微信公众号:likeshop技术社区
  15. // | likeshop团队 版权所有 拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshopTeam
  18. // +----------------------------------------------------------------------
  19. namespace app\common\cache;
  20. class ExportCache extends CacheBase
  21. {
  22. protected $uniqid = '';
  23. public function __construct($key = '')
  24. {
  25. parent::__construct($key);
  26. //以微秒计的当前时间,生成一个唯一的 ID,以tagname为前缀
  27. $this->uniqid = md5(uniqid($this->name,true).mt_rand());
  28. }
  29. /**
  30. * @notes 获取缓存目录
  31. * @return string
  32. * @author 段誉
  33. * @date 2022/4/21 11:17
  34. */
  35. public function getSrc()
  36. {
  37. return app()->getRootPath() . 'runtime/file/export/'.date('Y-m').'/'.$this->uniqid.'/';
  38. }
  39. /**
  40. * @notes 设置文件路径缓存地址
  41. * @param $fileName
  42. * @return string
  43. * @author 令狐冲
  44. * @date 2021/7/28 17:36
  45. */
  46. public function setFile($fileName)
  47. {
  48. $src = $this->getSrc();
  49. $key = md5($src . $fileName) . time();
  50. $this->cacheSet($key, ['src' => $src, 'name' => $fileName], 300);
  51. return $key;
  52. }
  53. /**
  54. * @notes 获取文件
  55. * @param $key
  56. * @return mixed
  57. * @author 段誉
  58. * @date 2022/4/21 11:44
  59. */
  60. public function getFile($key)
  61. {
  62. return $this->cacheGet($key);
  63. }
  64. /**
  65. * @notes 设置标签
  66. * @author 段誉
  67. * @date 2022/4/21 11:45
  68. */
  69. public function setTag()
  70. {
  71. return 'export';
  72. }
  73. public function setData()
  74. {
  75. }
  76. }