### 生成短链接
开发者用于生成二维码的原链接(商品、支付二维码等)太长导致扫码速度和成功率下降,将原长链接通过此接口转成短链接再生成二维码将大大提升扫码速度和成功率。
```php
use shuipf\wechat\wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));
```
使用缓存以避免重复、无意义的接口调用。
```php
use shuipf\wechat\wechat\ShortUrl;
$shortUrl = new ShortUrl($accessToken);
$shortUrl->setCache($cacheDriver);
var_dump($shortUrl->toShort('http://mp.weixin.qq.com/wiki/'));
```