Php - Fonction make_googl_url()

ARCHIVE

make_googl_url()

(PHP 4 >= 4.0.2, PHP 5)

Raccourci une URL avec le service Google URL Shortener.

 

Source

<?php

function make_googl_url($url)
{
$parse_url = parse_url($url);
if( empty($parse_url[\'scheme\']) ) return FALSE;

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, \'http://ggl-shortener.appspot.com/?url=\'.urlencode($url));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
$content = curl_exec($ch);
curl_close($ch);

preg_match(\'`\"(http[^\"]+)\"`\', $content, $m);
if( !isset($m[1]) ) return FALSE;

return $m[1];
}

?>


Syntaxe

string make_googl_url ( string $url )

 

Arguments

  1. url - L\'URL à raccourcir.

Valeurs de retour

Retourne l\'URL raccourcie ou FALSE si une erreur est survenue.

 

 

Exemples

Exemple #1 Exemple avec make_googl_url()

<?php
 
$url = \"http://seebz.net/\";
$url = make_googl_url($url);
echo $url; // http://goo.gl/zZb2
 
?>

Voir aussi


Source : http://code.seebz.net/p/make-googl-url/
Une question? Une remarque? Un avis? Twittons-en!

When you click on links to various merchants on this site and make a purchase, this can result in this site earning a commission.
Affiliate programs and affiliations include, but are not limited to, the eBay Partner Network and Amazon.