-
Notifications
You must be signed in to change notification settings - Fork 6
Home
igorescobar edited this page Sep 14, 2010
·
7 revisions
<?php
include_once(“bitly.php”);
$bitly = new Bitly(‘’,‘’);
echo $bitly→shorten(‘http://www.google.com/’); // out put the shorten url
?>
<?php
$bitly = new Bitly(‘’,‘’);
echo $bitly→expand(‘http://bit.ly/b6R4Uf’); // out put the long url
?>
<?php
$bitly = new Bitly(‘’,‘’);
$bitly→info(’’http://bit.ly/b6R4Uf);
echo $bitly→getData()→thumbnail→medium;
?>
<?php
$bitly = new Bitly(‘’,‘’);
$bitly→stats(‘http://bit.ly/b6R4Uf’);
//ex
echo $bitly→getData()→clicks;
?>
<?php
include_once(“bitly.php”);
$bitly = new Bitly(‘’,‘’);
$bitly→url = ‘http://www.google.com/’;
$bitly→shorten(’http://www.google.com/’);
// Opcao 1
printr_r($bitly→getData());
//Opcao 2
$bitly→debug();
?>