H5兼容头条小程序

feat/task1-c-wallet
devil_gong 2019-10-30 15:47:45 +08:00
parent ca658e61c0
commit e434435028
2 changed files with 8 additions and 2 deletions

View File

@ -172,11 +172,17 @@ function MiniAppEnv()
return 'alipay';
}
// 百度小程序
// 百度小程序 swan-baiduboxapp
if(stripos($_SERVER['HTTP_USER_AGENT'], 'swan-baiduboxapp') !== false)
{
return 'baidu';
}
// 头条小程序 ToutiaoMicroApp
if(stripos($_SERVER['HTTP_USER_AGENT'], 'ToutiaoMicroApp') !== false)
{
return 'toutiao';
}
}
return null;
}

View File

@ -72,6 +72,6 @@ return [
'under_line_list' => ['CashPayment', 'DeliveryPayment'],
// 小程序平台
'mini_app_type_list' => ['weixin', 'alipay', 'baidu'],
'mini_app_type_list' => ['weixin', 'alipay', 'baidu', 'toutiao'],
];
?>