- 按 docs/renew-code-comment.md 将 PHP 文件头改为带边框的 Author 注释\n- 注释中的 crmeb.com 替换为 uj345.cn(代码字符串中的外链未改)\n- 新增 docs/renew-code-comment.md 说明 Made-with: Cursor
20 lines
510 B
PHP
20 lines
510 B
PHP
<?php
|
|
// +----------------------------------------------------------------------
|
|
// | Author: ScottPan Team
|
|
// +----------------------------------------------------------------------
|
|
|
|
namespace crmeb\utils;
|
|
|
|
class QRcode extends \dh2y\qrcode\QRcode
|
|
{
|
|
public function setCacheDir(string $cache_dir)
|
|
{
|
|
$this->cache_dir = root_path() . 'public/' . $cache_dir;
|
|
if (!file_exists($this->cache_dir)) {
|
|
mkdir($this->cache_dir, 0775, true);
|
|
}
|
|
return $this;
|
|
}
|
|
|
|
}
|