Skip to content

Latest commit

 

History

History
35 lines (30 loc) · 806 Bytes

README.md

File metadata and controls

35 lines (30 loc) · 806 Bytes

yii2-google-url-shortener

Simple Yii2 component to short URL or expand URL using google API Url Shortener.

Installation

  • create folder components in your yii2
  • move GoogleShortUrl.php into components folder
  • add component class to config/main.php configuration file
....
'components' => [
        'google' => [
            'class' => 'app\components\GoogleShortUrl'
        ],
        .......
];
....

Usage

Short Url:
return Yii::$app->google->shortUrl('http://google.com');

Expand shorten Url:
return Yii::$app->google->expandUrl('https://goo.gl/FuAUYl');

Other Information