|
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 |
-
upload with new input
-
result: Success time: 0.01s memory: 13112 kB returned value: 0