Skip to content

Instantly share code, notes, and snippets.

@berkes
Created October 8, 2021 11:31
Show Gist options
  • Save berkes/aa4ada274c0d44dd6747cca3beed327e to your computer and use it in GitHub Desktop.
Save berkes/aa4ada274c0d44dd6747cca3beed327e to your computer and use it in GitHub Desktop.
URL shortner without storage
<?php
composer require "tuupola/base85:^1.0"
$url = "https://ultimatemotherfuckingwebsite.com/"
$base85 = new Tuupola\Base85;
$tokenized = $base85->encode($url);
$shortened = "https://big.pm/$tokenized";
print("The URL $url, is shorthened to $shortened");
$long = array_pop(explode('/', $shortened));
print("redirecting to: $long")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment