-
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();
$bitly→url = ‘http://www.google.com/’;
$bitly→shorten();
echo $bitly→getData()→shortUrl;
echo $bitly→getData()→userHash;
?>
<?php
$bitly = new Bitly();
$bitly→url = ‘http://bit.ly/b6R4Uf’;
$bitly→expand();
echo $bitly→getData()→longUrl;
?>
<?php
$bitly = new Bitly();
$bitly→url = ‘http://bit.ly/b6R4Uf’;
$bitly→info();
echo $bitly→getData()→thumbnail→medium;
?>
<?php
$bitly = new Bitly();
$bitly→url = ‘http://bit.ly/b6R4Uf’;
$bitly→stats();
echo $bitly→getData()→clicks;
?>
<?php
include_once(“bitly.php”);
$bitly = new Bitly();
$bitly→url = ‘http://www.google.com/’;
$bitly→shorten();
// Opcao 1
printr_r($bitly→getData());
//Opcao 2
$bitly→debug();
?>