TinyURL is a shortened web site service, you can turn a long web site into a simple address, usually the way to create TinyURL is to its homepage to create, sometimes there will be users in the client automatically generate TinyURL situation ...
TinyURL is a shortened web site service, can be a very long URL into a simple address, often create TinyURL method is to its homepage to create, and sometimes the user will automatically generate TinyURL on the client, Here is a way to generate shortened addresses by invoking TinyURL in PHP.
The PHP functions of the TinyURL API are as follows
<?php
function TinyURL ($u) {
Return file_get_contents (' http://tinyurl.com/api-create.php?url= '. $u);
}
?>
The example of the call is
<?php
$url = ' http://www.williamlong.info/';
$tiny = TinyURL ($url);
Echo (' The tinyurl of '. $url. ' "is" '. $tiny. ' ");
Die ();
?>