PHP Is.gd Url缩短功能

Posted

tags:

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

function isgd($link = "") {
	$fp = fsockopen("www.is.gd", 80, $errno, $errstr, 30);
 	if(!$fp) {
 		return "";
 	} else {
 		$out = "GET /api.php?longurl=$link HTTP/1.1
";
 		$out .= "Host: www.is.gd
";
 		$out .= "Connection: Close

";
 		fwrite($fp, $out);

 		while(!feof($fp)) {
 			return substr(strstr(fread($fp, 300), 'http://'), 0, -5);
 		}
 		fclose($fp);
 	}
}

以上是关于PHP Is.gd Url缩短功能的主要内容,如果未能解决你的问题,请参考以下文章

PHP 创建Is.Gd网址

PHP 长URL的URL缩短

PHP 从缩短的URL中检索原始URL

PHP 短哈希,如 URL 缩短网站

.htaccess 使用 php $_GET 缩短 URL

PHP 在文本中查找URL并缩短它们