| 1234567891011121314151617181920212223242526272829 |
- <?php
- namespace addons\Sicpay\common\sdk\config;
- /**
- * 2.2.6 微信 基础类
- * @package addons\Sicpay\common\sdk\config
- */
- class BaseWechatStruct extends BaseStruct
- {
- public function __construct ($config = [], $type = '')
- {
- $config = $this->setSceneInfo($config, $type);
- parent::__construct($config);
- }
- // 合并场景
- public function setSceneInfo($config, $type)
- {
- $scene_info = [
- 'h5_info' => [
- 'type' => $type,
- 'wap_url' => 'https://pay.qq.com',
- 'wap_name' => "天润珍品",
- ]
- ];
- $config['scene_info'] = json_encode($scene_info);
- return $config;
- }
- }
|