mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-06 03:58:04 +08:00
[更新]修改文件md5名称机制
This commit is contained in:
parent
6c76ab26ce
commit
44253a7fc9
@ -51,7 +51,7 @@ class Review extends Controller {
|
||||
*/
|
||||
public function img() {
|
||||
$url = $this->request->get('url', '');
|
||||
$filename = 'wechat/tmp/' . join('/', str_split(md5($url), 16)) . '.jpg';
|
||||
$filename = FileService::getFileName($url, 'jpg', 'tmp/');
|
||||
if (false === ($img = FileService::getFileUrl($filename))) {
|
||||
$info = FileService::save($filename, file_get_contents($url));
|
||||
$img = (is_array($info) && isset($info['url'])) ? $info['url'] : $url;
|
||||
|
@ -52,10 +52,9 @@ class PayService {
|
||||
if ($prepayid === false) {
|
||||
return false;
|
||||
}
|
||||
$filename = 'wechat/qrc/' . join('/', str_split(md5($prepayid), 16)) . '.png';
|
||||
$filename = FileService::getFileName($prepayid, 'png', 'qrc/');
|
||||
if (!FileService::hasFile($filename, 'local')) {
|
||||
$qrCode = new QrCode();
|
||||
$qrCode->setText($prepayid);
|
||||
$qrCode = new QrCode($prepayid);
|
||||
if (null === FileService::save($filename, $qrCode->get(), 'local')) {
|
||||
return false;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user