Is.gd公司Url缩写函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Is.gd公司Url缩写函数相关的知识,希望对你有一定的参考价值。

Well, not the best one...
  1. function isgd($link = "") {
  2. $fp = fsockopen("www.is.gd", 80, $errno, $errstr, 30);
  3. if(!$fp) {
  4. return "";
  5. } else {
  6. $out = "GET /api.php?longurl=$link HTTP/1.1
  7. ";
  8. $out .= "Host: www.is.gd
  9. ";
  10. $out .= "Connection: Close
  11.  
  12. ";
  13. fwrite($fp, $out);
  14.  
  15. while(!feof($fp)) {
  16. return substr(strstr(fread($fp, 300), 'http://'), 0, -5);
  17. }
  18. fclose($fp);
  19. }
  20. }

以上是关于Is.gd公司Url缩写函数的主要内容,如果未能解决你的问题,请参考以下文章

PHP 创建Is.Gd网址

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段

从零开始配置vim(27)——代码片段

创建是.Gd网址

VSCode自定义代码片段3——url大全