当前位置:  开发笔记 > 编程语言 > 正文

PHP:如何扩展/收缩Tinyurls

如何解决《PHP:如何扩展/收缩Tinyurls》经验,为你挑选了1个好方法。

在PHP中,如何在search.twitter.com上复制Tinyurls的扩展/收缩功能?



1> Paul Dixon..:

如果你想知道tinyurl的去向,可以使用fsockopen在端口80上获得与tinyurl.com的连接,并向它发送一个这样的HTTP请求

GET /dmsfm HTTP/1.0
Host: tinyurl.com

你得到的回复看起来像

HTTP/1.0 301 Moved Permanently
Connection: close
X-Powered-By: PHP/5.2.6
Location: http://en.wikipedia.org/wiki/TinyURL
Content-type: text/html
Content-Length: 0
Date: Mon, 15 Sep 2008 12:29:04 GMT
Server: TinyURL/1.6

示例代码...

\n";
} else {
    $out = "GET /$tinyurl HTTP/1.0\r\n";
    $out .= "Host: tinyurl.com\r\n";
    $out .= "Connection: Close\r\n\r\n";

    $response="";

    fwrite($fp, $out);
    while (!feof($fp)) {
        $response.=fgets($fp, 128);
    }
    fclose($fp);

    //now parse the Location: header out of the response

}
?>

推荐阅读
可爱的天使keven_464
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有