20 lines
298 B
PHP
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));
|
|
}
|
|
|
|
} |