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

20 lines
298 B
PHP

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