创建是.Gd网址

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建是.Gd网址相关的知识,希望对你有一定的参考价值。

Is.Gd is a URL-shortening service much like TinyURL. Using php’s cURL library, you can create shortened URLs on the fly with ease. “is.gd” is much shorter than “tinyurl.com” so if you need the URL to be as short as possible, use this method.
Create tinyurl.com urls : http://snipplr.com/view/11601/create-tinyurl/
  1. //gets the data from a URL
  2. function get_isgd_url($url)
  3. {
  4. //get content
  5. $ch = curl_init();
  6. $timeout = 5;
  7. curl_setopt($ch,CURLOPT_URL,'http://is.gd/api.php?longurl='.$url);
  8. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  9. curl_setopt($ch,CURLOPT_CONNECTTIMEOUT,$timeout);
  10. $content = curl_exec($ch);
  11. curl_close($ch);
  12.  
  13. //return the data
  14. return $content;
  15. }
  16.  
  17. //uage
  18. $new_url = get_isgd_url('http://davidwalsh.name/php-imdb-information-grabber');

以上是关于创建是.Gd网址的主要内容,如果未能解决你的问题,请参考以下文章

Linux 安装GD库

如何从片段内的列表视图打开链接网址?

我无法从 firebase 获取下载网址()。请任何人帮助这是我的代码和错误。 (我正在使用片段)[重复]

GD 无法创建 JPG

gd 库创建的图像上未显示文本

PHP系列GD库