Commit acec77da authored by jiangkebao's avatar jiangkebao

添加文件流下载文件

parent c8405500
......@@ -125,6 +125,19 @@ if (!function_exists('fail')) {
}
}
if (!function_exists('download')) {
/**
* 文件流下载文件
* @param string $filePath 文件路径
* @param string $showName 下载后展示的名称
* @return mixed
*/
function download($filePath = '', $showName = '')
{
return $this->response->download($filePath, urlencode($showName));
}
}
if (!function_exists('decimal_to_abc')) {
/**
* 数字转换对应26个字母
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment