구글단축 썸네일형 리스트형 구글 단축 주소 출처 : http://multime.kr/bbs/board.php?bo_table=tech&wr_id=51class googl { function googl($key,$apiURL = 'https://www.googleapis.com/urlshortener/v1/url') { $this->apiURL = $apiURL.'?key='.$key; } function shorten($url) { $response = $this->send($url); return isset($response['id']) ? $response['id'] : false; } function expand($url) { $response = $this->send($url,false); return isset($response['lon.. 더보기 이전 1 다음