PHP Invoke TinyURL API Source Example

Source: Internet
Author: User
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 ();
?>



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.