Welcome Guest, Not a member yet? Register   Sign In
URL shortening service
#11

[eluser]xwero[/eluser]
[quote author="TheFuzzy0ne" date="1243964884"]My take on a similar service:

Code:
function shorten_url($url)
{
    return substr($url, 0, 1);
}

(Sorry, couldn't resist). Tongue[/quote]
It doesn't work as you return h every time or if you are lucky someone will get f, g, m, t or s. If you want an url shortener service quick and dirty try
Code:
function shorten_url($url)
{
   file_put_contents('urls.php', '$urls[] = '.$url.';'.PHP_EOL, FILE_APPEND | LOCK_EX);
   return count(file('urls.php'))-1; // remove <?php line from the count
}

function elongate_url($url)
{
   include('urls.php');

   if(isset($urls[$url]))
   {
      header('Location: '$urls[$url]);
      exit;
   }

   header('Location: '$_SERVER['HTTP_REFERER']);
   exit;
}


Messages In This Thread
URL shortening service - by El Forum - 06-02-2009, 02:36 AM
URL shortening service - by El Forum - 06-02-2009, 03:01 AM
URL shortening service - by El Forum - 06-02-2009, 03:02 AM
URL shortening service - by El Forum - 06-02-2009, 03:10 AM
URL shortening service - by El Forum - 06-02-2009, 04:13 AM
URL shortening service - by El Forum - 06-02-2009, 06:20 AM
URL shortening service - by El Forum - 06-02-2009, 06:44 AM
URL shortening service - by El Forum - 06-02-2009, 06:48 AM
URL shortening service - by El Forum - 06-02-2009, 06:56 AM
URL shortening service - by El Forum - 06-02-2009, 07:00 AM
URL shortening service - by El Forum - 06-02-2009, 07:19 AM
URL shortening service - by El Forum - 06-02-2009, 07:31 AM
URL shortening service - by El Forum - 06-02-2009, 07:44 AM
URL shortening service - by El Forum - 06-02-2009, 07:47 AM
URL shortening service - by El Forum - 06-02-2009, 07:53 AM
URL shortening service - by El Forum - 06-02-2009, 08:03 AM
URL shortening service - by El Forum - 06-02-2009, 08:11 AM
URL shortening service - by El Forum - 06-02-2009, 08:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB