Welcome!  login or register

Your great ideas will be born here
language: PHP (php 5.2.11)
date: 4 days 6 hours ago
link:
visibility: public
Place an ad on Ideone.com, see our offer.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
function shorten($url)
{
  $ch = curl_init('http://goo.gl/api/url');
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  curl_setopt($ch, CURLOPT_POST, true);
  curl_setopt($ch, CURLOPT_POSTFIELDS, 'url='.urlencode($url));
  $response = curl_exec($ch); 
  curl_close($ch);
  return $response;
}
 
// fsockopen で googl api を叩く場合は以下のヘッダを送信すること
// Content-Type: application/x-www-form-urlencoded