'pc', self::APP => 'app', self::F2F => '面对面支付', self::WAP => '手机网站', ]; } /** * 根据环境获取微信交易类型 * @param $platform * @return mixed|string */ public static function getTypeByPlatform($platform) { $arr = [ User::PLATFORM_APP => self::APP, User::PLATFORM_H5 => self::WAP, User::PLATFORM_MP_ALI => self::JS, ]; return $arr[$platform] ?? ''; } }