問題說明:后臺上傳支付證書提示方法不存在
修改文件:app\common
添加方法:
if (!function_exists('pem_path')) {
/**
* 獲取web根目錄
*
* @param string $path
* @return string
*/
function pem_path($path = '')
{
return app()->getRootPath() . 'pem' . ($path ? $path . DIRECTORY_SEPARATOR : $path);
}
}