如果你是新手小白,请从微信公众号开发第一篇看起:
微信公众号开发-接口配置信息(第①篇)_微信公众号 接口配置信息怎么设置-CSDN博客
代码:
<?php
// 获取菜单配置数据
$menuConfig = array(
'button' => array(
array(
'name' => '首页',
'sub_button' => array(
array(
'type' => 'view',
'name' => '鸿星尔克',
'url' => 'https://www.baidu.com'
),
array(
'type' => 'view',
'name' => '海贼王',
'url' => 'https://example.com/index1'
),
array(
'type' => 'view',
'name' => '小米SU7',
'url' => 'https://example.com/index2'
)
)
),
array(
'type' => 'view',
'name' => '关于我们',
'url' => 'https://example.com/about'
),
array(
'type' => 'view',
'name' => '联系我们',
'url' => 'https://example.com/contact'
)
)
);
// 将菜单配置转换为 JSON 格式
$menuJson = json_encode($menuConfig, JSON_UNESCAPED_UNICODE);
// 设置请求头
header('Content-Type: application/json; charset=utf-8');
// 输出 JSON 格式的菜单配置
echo $menuJson;
公众号效果图:
配置文件配置好后,直接复制代码就可以显示了,可能会有1~2分钟延迟,可以等等刷新一下。