You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
589 B

2 months ago
<?php
2 months ago
// 定义命名空间,用于组织代码
2 months ago
namespace LaneWeChat;
2 months ago
// 引入Wechat类该类位于Core命名空间下用于处理微信相关功能
2 months ago
use LaneWeChat\Core\Wechat;
2 months ago
// 引入配置文件
2 months ago
include_once __DIR__.'/config.php';
2 months ago
// 引入自动加载器文件
2 months ago
include_once __DIR__.'/autoloader.php';
2 months ago
// 注册自动加载器,这样可以自动加载所需的类文件
2 months ago
AutoLoader::register();
2 months ago
// 创建WeChat类的实例传入WECHAT_TOKEN和调试模式参数
2 months ago
$wechat = new WeChat(WECHAT_TOKEN, TRUE);
2 months ago
// 运行WeChat实例输出处理结果
echo $wechat->run();