Files
heping-api/app/controller/Check.php
2022-09-09 15:43:00 +08:00

20 lines
295 B
PHP

<?php
namespace app\controller;
use EasyWeChat\Factory;
use think\facade\Config;
class Check
{
public function index()
{
$url = $GLOBALS['data']['data']['url'];
$app = Factory::officialAccount(Config::get('wechat'));
dump($app->url->shorten($url));
}
}