[更新]修改文件md5名称机制

This commit is contained in:
Anyon 2017-05-25 10:55:37 +08:00
parent 6c76ab26ce
commit 44253a7fc9
2 changed files with 3 additions and 4 deletions

View File

@ -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;

View File

@ -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;
}