Skip to content

Instantly share code, notes, and snippets.

@itsmikita
Created May 10, 2021 18:02
Show Gist options
  • Select an option

  • Save itsmikita/d4e76b473ef140a722f5ed1aff314383 to your computer and use it in GitHub Desktop.

Select an option

Save itsmikita/d4e76b473ef140a722f5ed1aff314383 to your computer and use it in GitHub Desktop.
URL Shortener
<?php
/**
* Shorten URL
* @param $url
* @returns Shortened URL or false on failure
*/
function shorten( $url )
{
try {
return file_get_contents( "https://clck.ru/--?url={$url}" );
}
catch( Exception $error ) {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment