PHP Class to shorten URLs by calling APIs
https://rot47.net/_url/
$obj = new URL();
$response = $obj->shorten("https://steemit.com/@justyy", array("try" => 1));
var_dump($response);
$response = $obj->shorten("https://steemit.com/@justyy", array("private" => 1));
var_dump($response);
echo $response->url;