/ Published in: PHP
URL: http://davidwalsh.name/isgd-url-php
Is.Gd is a URL-shortening service much like TinyURL. Using PHP’s cURL library, you can create shortened URLs on the fly with ease. “is.gd” is much shorter than “tinyurl.com” so if you need the URL to be as short as possible, use this method. Create tinyurl.com urls : http://snipplr.com/view/11601/create-tinyurl/
Expand |
Embed | Plain Text
//gets the data from a URL function get_isgd_url($url) { //get content $ch = curl_init(); $timeout = 5; curl_setopt($ch,CURLOPT_URL,'http://is.gd/api.php?longurl='.$url); curl_setopt($ch,CURLOPT_RETURNTRANSFER,1); curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout); $content = curl_exec($ch); curl_close($ch); //return the data return $content; } //uage $new_url = get_isgd_url('http://davidwalsh.name/php-imdb-information-grabber');
You need to login to post a comment.
