Tiny URL은 URL 단축 웹사이트입니다. 이것은 자체 웹사이트의 URL을 단축하기 위한 간단한 PHP 코드입니다. <?php function get_tiny_url($url) { $ch = curl_init(); $timeout = 5; curl_setopt($ch,CURLOPT_URL,'http://tinyurl.com/api-create.php?url='.$url); curl_setopt($ch,CURLOPT_RETURNTRA…
Read more »