ShortUrl¶

zan框架封装了短地址接入的api,业务开发可以直接通过longurl查询对应的short url。

配置¶

Shorturl配置在项目resource/config/$ENV/shorturl.php下。

  1. return [
  2. //短地址接入的server地址
  3. 'host' => 'www.example.com',
  4. 'port' => 80
  5. ];

接口¶

  1. class ShortUrl {
  2. public static function get($url);
  3. }

get方法入参为long url,返回的是short url。

使用示例¶

  1. $shortUrl = (yield ShortUrl::get("http://www.example.com"));

原文: http://zanphpdoc.zanphp.io/libs/sdks/shorturl.html