<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>同步控 &#187; php</title>
	<atom:link href="http://www.syncoo.com/tag/php/feed" rel="self" type="application/rss+xml" />
	<link>http://www.syncoo.com</link>
	<description>轻松同步，便携移动。Sync different.</description>
	<lastBuildDate>Thu, 09 Feb 2012 07:42:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>利用 PHP 和 Follow5 同步腾讯微博</title>
		<link>http://www.syncoo.com/php-follow5-tencent-mblog.htm</link>
		<comments>http://www.syncoo.com/php-follow5-tencent-mblog.htm#comments</comments>
		<pubDate>Sun, 05 Sep 2010 02:30:34 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[Twitter & Microblog]]></category>
		<category><![CDATA[网络同步]]></category>
		<category><![CDATA[follow5]]></category>
		<category><![CDATA[microblog]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[源代码]]></category>
		<category><![CDATA[腾讯微博]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=3258</guid>
		<description><![CDATA[如果你是个微博同步控，这篇文章可以助你一臂之力。首先 Follow5 可以用来同步几乎所有微博，不过大名鼎鼎的腾讯微博不可以，那么本文就此应运而生。编程语言用的PHP，运行在开启了 curl 的 PHP 服务器上，所以首先要确定你的服务器开启了 curl。本段代码主要是实现发微博到 Follow5 和腾讯微博，利用 Follow5 的五步大同功能，就不必再发其它微博上了。
本文主要参考了三篇文章：腾讯微博API，同步消息到腾讯微博，发布一个Follow5的API PHP类 。因此如果你对本文有任何不理解的地方，可以详细阅读以上文章。
闲话少说，发表微博到 Follow5，你还得需要一个 Follow5 的 key，在这里我要表扬 Follow5 办事效率高，一个晚上就将 key 发给我了，太高兴了。以下就是代码，如果因为代码损害了原博主，还请告知。本文对 PHP 和 python 一窍不通，所以几乎都是啃大家的代码然后加以组合。
&#60;?php
if ($_POST['status']) {
 $status = $_POST['status'];
 update_follow5('username', 'password', $status);

 //此处的username是你的腾讯微博用户名，而不是你的Q号码
 update_qq('username', 'password', $status);    

 //跳回到发表微博的界面
 header("location: xxxxx.html");
}

function update_follow5($username, $password, $status){
 //这个api_key需要自己去向Follow5申请
 $api_key = 'xxxxxxxxxxxxxxxx';
 $usr = $username.':'.$password;
 $str = 'status='.urlencode(stripslashes($status)).'&#38;api_key='.$api_key;
 $url = 'http://api.follow5.com/api/statuses/update.xml';

 postCurl($url, $usr, $str);
}

//此处代码参考http://www.js8.in/349.html
function postCurl($url, $usr, $str) {
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);        
 curl_setopt($ch, CURLOPT_USERPWD, $usr);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $str);
 $data = curl_exec($ch);
 $Headers = curl_getinfo($ch);
 if ($Headers['http_code'] == 200) {
 return $data;
 } else {
 if ($Headers['http_code'] == 401) {
 echo 'Username and or password not [...]<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="微博时代，王者之争：“新浪微博”与“腾讯微博”评测报告" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F07%2F%25E5%25BE%25AE%25E5%258D%259A%25E6%2597%25B6%25E4%25BB%25A3%25EF%25BC%258C%25E7%258E%258B%25E8%2580%2585%25E4%25B9%258B%25E4%25BA%2589%25EF%25BC%259A%25E2%2580%259C%25E6%2596%25B0%25E6%25B5%25AA%25E5%25BE%25AE%25E5%258D%259A%25E2%2580%259D%25E4%25B8%258E%25E2%2580%259C%25E8%2585%25BE%25E8%25AE%25AF%25E5%25BE%25AE%25E5%258D%259A%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17117232.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">微博时代，王者之争：“新浪微博”与“腾讯微博”评测报告 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="微博平台化SNS化，意味着自我降级" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F07%2F%25E5%25BE%25AE%25E5%258D%259A%25E5%25B9%25B3%25E5%258F%25B0%25E5%258C%2596sns%25E5%258C%2596%25EF%25BC%258C%25E6%2584%258F%25E5%2591%25B3%25E7%259D%2580%25E8%2587%25AA%25E6%2588%2591%25E9%2599%258D%25E7%25BA%25A7%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17123945.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">微博平台化SNS化，意味着自我降级 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Follow5 全新改版，新增微博双向同步和时间轴视图（图）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffollow5-2011.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/25026431.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Follow5 全新改版，新增微博双向同步和时间轴视图（图）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博邀请码五枚" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite-2120.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博邀请码五枚</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>如果你是个微博同步控，这篇文章可以助你一臂之力。首先 Follow5 可以用来同步几乎所有微博，不过大名鼎鼎的腾讯微博不可以，那么本文就此应运而生。编程语言用的PHP，运行在开启了 curl 的 PHP 服务器上，所以首先要确定你的服务器开启了 curl。本段代码主要是实现发微博到 Follow5 和腾讯微博，利用 Follow5 的五步大同功能，就不必再发其它微博上了。</p>
<p>本文主要参考了三篇文章：<a href="http://www.ineeke.com/archives/tencent-microblog-api/" target="_blank">腾讯微博API</a>，<a href="http://isouth.org/archives/279.html">同步消息到腾讯微博</a>，<a href="http://www.js8.in/349.html">发布一个Follow5的API PHP类</a> 。因此如果你对本文有任何不理解的地方，可以详细阅读以上文章。</p>
<p><span id="more-3258"></span>闲话少说，发表微博到 Follow5，你还得需要一个 Follow5 的 key，在这里我要表扬 Follow5 办事效率高，一个晚上就将 key 发给我了，太高兴了。以下就是代码，如果因为代码损害了原博主，还请告知。本文对 PHP 和 python 一窍不通，所以几乎都是啃大家的代码然后加以组合。</p>
<pre lang="php" escaped="true">&lt;?php
if ($_POST['status']) {
 $status = $_POST['status'];
 update_follow5('username', 'password', $status);

 //此处的username是你的腾讯微博用户名，而不是你的Q号码
 update_qq('username', 'password', $status);    

 //跳回到发表微博的界面
 header("location: xxxxx.html");
}

function update_follow5($username, $password, $status){
 //这个api_key需要自己去向Follow5申请
 $api_key = 'xxxxxxxxxxxxxxxx';
 $usr = $username.':'.$password;
 $str = 'status='.urlencode(stripslashes($status)).'&amp;api_key='.$api_key;
 $url = 'http://api.follow5.com/api/statuses/update.xml';

 postCurl($url, $usr, $str);
}

//此处代码参考http://www.js8.in/349.html
function postCurl($url, $usr, $str) {
 $ch = curl_init($url);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($ch, CURLOPT_POST, 1);        
 curl_setopt($ch, CURLOPT_USERPWD, $usr);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $str);
 $data = curl_exec($ch);
 $Headers = curl_getinfo($ch);
 if ($Headers['http_code'] == 200) {
 return $data;
 } else {
 if ($Headers['http_code'] == 401) {
 echo 'Username and or password not set,or api key is wrong';
 } elseif ($Headers['http_code'] == 404) {
 echo 'Invalud URL for CURL request';
 }
 }
}

function update_qq($qq, $password, $content){
 //省却代码无数，补充代码请参看http://www.ineeke.com/archives/tencent-microblog-api/

 //增加这第五次是用来发表腾讯微博的
 //改装来自于http://isouth.org/archives/279.html
 $fields = 'content='.$content.'&amp;countType=&amp;pic=&amp;viewModel=0';
 $referer_url='http://t.qq.com/oooooooooooooooooooooooo';
 $url='http://t.qq.com/publish.php';
 $curl = curl_init();
 curl_setopt($curl, CURLOPT_REFERER, $referer_url);
 curl_setopt($curl, CURLOPT_URL, $url);
 curl_setopt($curl, CURLOPT_POST, 1); 
 curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
 curl_setopt($curl, CURLOPT_POSTFIELDS, $fields);
 curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
 curl_setopt($curl, CURLOPT_COOKIEFILE, $cookie_jar);
 curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_jar);
 $loginResult = curl_exec($curl);
 curl_close($curl);

unlink($cookie_jar);
}
?&gt;</pre>
<p>据说腾讯的登录有时会出问题的，所以如果在使用过程出现问题，还请能安心对之，不过我现在还没出过什么问题，可能测试次数少的缘故吧。更多知识还请去上面提到的三位博主的博客吧，他们才是真正的牛人。</p>
<p>本文转载自<a href="http://wangliping.net/">转烛空间</a>，原文地址：<a href="http://wangliping.net/sync-weibo">http://wangliping.net/sync-weibo</a>。</p>
<p><code> </code></p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="微博时代，王者之争：“新浪微博”与“腾讯微博”评测报告" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F07%2F%25E5%25BE%25AE%25E5%258D%259A%25E6%2597%25B6%25E4%25BB%25A3%25EF%25BC%258C%25E7%258E%258B%25E8%2580%2585%25E4%25B9%258B%25E4%25BA%2589%25EF%25BC%259A%25E2%2580%259C%25E6%2596%25B0%25E6%25B5%25AA%25E5%25BE%25AE%25E5%258D%259A%25E2%2580%259D%25E4%25B8%258E%25E2%2580%259C%25E8%2585%25BE%25E8%25AE%25AF%25E5%25BE%25AE%25E5%258D%259A%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17117232.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">微博时代，王者之争：“新浪微博”与“腾讯微博”评测报告 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="微博平台化SNS化，意味着自我降级" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F07%2F%25E5%25BE%25AE%25E5%258D%259A%25E5%25B9%25B3%25E5%258F%25B0%25E5%258C%2596sns%25E5%258C%2596%25EF%25BC%258C%25E6%2584%258F%25E5%2591%25B3%25E7%259D%2580%25E8%2587%25AA%25E6%2588%2591%25E9%2599%258D%25E7%25BA%25A7%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/12/17123945.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">微博平台化SNS化，意味着自我降级 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Follow5 全新改版，新增微博双向同步和时间轴视图（图）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ffollow5-2011.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/08/25/25026431.gif" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Follow5 全新改版，新增微博双向同步和时间轴视图（图）</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="围着脖子推 V1.0beta – 同步更新Twitter与新浪微博" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fsync-twittersina-593.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2332604.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">围着脖子推 V1.0beta – 同步更新Twitter与新浪微博</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="腾讯微博邀请码五枚" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Ftencent-microblog-invite-2120.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fphp-follow5-tencent-mblog.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/03/27454606.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">腾讯微博邀请码五枚</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/php-follow5-tencent-mblog.htm/feed</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>使用 Dropbox 搭建在线电子相册集</title>
		<link>http://www.syncoo.com/my-php-dropbox-gallery.htm</link>
		<comments>http://www.syncoo.com/my-php-dropbox-gallery.htm#comments</comments>
		<pubDate>Wed, 13 Jan 2010 01:14:24 +0000</pubDate>
		<dc:creator>XDash</dc:creator>
				<category><![CDATA[网络同步]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[影集]]></category>
		<category><![CDATA[相册]]></category>

		<guid isPermaLink="false">http://www.syncoo.com/?p=1291</guid>
		<description><![CDATA[使用 Dropbox 这个同步工具也能建立在线电子相册了，只要您安装 My PHP DropBox Gallery 这个工具。
My PHP DropBox Gallery 是一个 PHP 脚本，允许在您的服务器上建立一个电子相册影集，其图片来源为您的 Dropbox 。
效果图：


（效果图 via）
在线演示：http://2boandco.com/demo-php-dropbox-gallery/
说明：http://forums.dropbox.com/topic.php?id=15885
下载地址：http://2boandco.com/
文末代表同步控们祝贺 Dropbox 刚刚获得 TechCrunch Crunchies 2009 最佳互联网应用奖冠军。

不过参考其它同类获奖者（Twitter/Facebook/Google Docs/etc），在中国十室九贫凑得IP寥寥（哥，你懂的）。加上在中国互联网界不成文的规矩：要ban就ban最好的，网站要从没在中国被ban过，你都不好意思跟人打招呼……Dropbox，不会就此被盯上吧……
<table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Apple欲收购Dropbox被拒" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F09%2Fapple-dropbox-2%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/13/30507518.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Apple欲收购Dropbox被拒 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox已拥有2500万用户，但这才仅仅是个开始" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F04%2Fdropbox%25E5%25B7%25B2%25E6%258B%25A5%25E6%259C%25892500%25E4%25B8%2587%25E7%2594%25A8%25E6%2588%25B7%25EF%25BC%258C%25E4%25BD%2586%25E8%25BF%2599%25E6%2589%258D%25E4%25BB%2585%25E4%25BB%2585%25E6%2598%25AF%25E4%25B8%25AA%25E5%25BC%2580%25E5%25A7%258B%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/22/18412090.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox已拥有2500万用户，但这才仅仅是个开始 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-v101-cr-for-iphone-1485.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/01/26726352.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="小技巧：6行代码，使用Sikuli语言同时登陆两个Dropbox账户" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Flogin-2-dropbox-with-sikuli-1959.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2317975.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">小技巧：6行代码，使用Sikuli语言同时登陆两个Dropbox账户</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox网盘的15个应知必会的高级使用技巧（1）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-15-hacks-tips-1194.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/02/4894661.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox网盘的15个应知必会的高级使用技巧（1）</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></description>
			<content:encoded><![CDATA[<p>使用 <a href="https://www.dropbox.com/referrals/NTM4NzY1MDE5" target="_blank">Dropbox</a> 这个同步工具也能建立在线电子相册了，只要您安装 <a href="http://forums.dropbox.com/topic.php?id=15885" target="_blank">My PHP DropBox Gallery</a> 这个工具。</p>
<p>My PHP <span class='wp_keywordlink'><a href="http://www.syncoo.com/tag/dropbox" title="DropBox" target="_blank">DropBox</a></span> Gallery 是一个 PHP 脚本，允许在您的服务器上建立一个电子相册影集，其图片来源为您的 <span class='wp_keywordlink'><a href="http://www.syncoo.com/tag/dropbox" title="Dropbox" target="_blank">Dropbox</a></span> 。</p>
<p><strong>效果图：</strong></p>
<p><img class="alignnone size-full wp-image-1294" title="My PHP DropBox Gallery 1" src="http://www.syncoo.com/wp-content/uploads/2010/01/2010010201.jpg" alt="My PHP DropBox Gallery 1" width="480" height="258" /></p>
<p><img class="alignnone size-full wp-image-1295" title="My PHP DropBox Gallery 2" src="http://www.syncoo.com/wp-content/uploads/2010/01/2010010202.jpg" alt="My PHP DropBox Gallery 2" width="480" height="270" /></p>
<p>（效果图 <a href="http://jomor.org/2010/01/02/dropbox-gallery" target="_blank">via</a>）</p>
<p><strong>在线演示：</strong><a href="http://2boandco.com/demo-php-dropbox-gallery/">http://2boandco.com/demo-php-dropbox-gallery/</a></p>
<p><strong>说明：</strong><a href="http://forums.dropbox.com/topic.php?id=15885">http://forums.dropbox.com/topic.php?id=15885</a></p>
<p><strong>下载地址：<span style="font-weight: normal;"><a href="http://2boandco.com/">http://2boandco.com/</a></span></strong></p>
<p>文末代表同步控们祝贺 <a href="http://www.williamlong.info/archives/2051.html" target="_blank">Dropbox 刚刚获得 TechCrunch Crunchies 2009 最佳互联网应用奖冠军</a>。</p>
<p><span id="more-1291"></span></p>
<p>不过参考其它同类获奖者（Twitter/Facebook/Google Docs/etc），在中国十室九贫凑得IP寥寥（哥，你懂的）。加上在中国互联网界不成文的规矩：要ban就ban最好的，网站要从没在中国被ban过，你都不好意思跟人打招呼……Dropbox，不会就此被盯上吧……</p>
<div><script language="javascript" type="text/javascript" src="http://js.users.51.la/2894225.js"></script></div><table class="wumii-related-items" cellspacing="0" cellpadding="3" border="0"  style="clear: both;">
    
    <tr>
        <td colspan="5"><b><font size="-1"  style="display: block !important; padding: 20px 0 5px !important;">您可能也喜欢：</font></b></td>
    </tr>
    
        <tr>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important;">
                    <a target="_blank" title="Apple欲收购Dropbox被拒" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F09%2Fapple-dropbox-2%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/13/30507518.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Apple欲收购Dropbox被拒 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox已拥有2500万用户，但这才仅仅是个开始" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Ftech2ipo.com%2F2011%2F04%2Fdropbox%25E5%25B7%25B2%25E6%258B%25A5%25E6%259C%25892500%25E4%25B8%2587%25E7%2594%25A8%25E6%2588%25B7%25EF%25BC%258C%25E4%25BD%2586%25E8%25BF%2599%25E6%2589%258D%25E4%25BB%2585%25E4%25BB%2585%25E6%2598%25AF%25E4%25B8%25AA%25E5%25BC%2580%25E5%25A7%258B%2F&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/07/22/18412090.png" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox已拥有2500万用户，但这才仅仅是个开始 (@tech2ipo)</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-v101-cr-for-iphone-1485.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/09/01/26726352.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox免费网络文件同步工具v1.0.1破解版 for iPhone</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="小技巧：6行代码，使用Sikuli语言同时登陆两个Dropbox账户" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Flogin-2-dropbox-with-sikuli-1959.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/01/22/2317975.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">小技巧：6行代码，使用Sikuli语言同时登陆两个Dropbox账户</font>
                    </a>
                </td>
                <td width="102" valign="top" style="padding: 5px !important; margin: 0 !important; border-left: 1px solid #DDDDDD !important;">
                    <a target="_blank" title="Dropbox网盘的15个应知必会的高级使用技巧（1）" style="text-decoration: none !important; cursor: pointer !important;" href="http://app.wumii.com/ext/redirect.htm?url=http%3A%2F%2Fwww.syncoo.com%2Fdropbox-15-hacks-tips-1194.htm&from=http%3A%2F%2Fwww.syncoo.com%2Fmy-php-dropbox-gallery.htm">
                        <img style="margin: 0 !important; padding: 2px !important; border: 1px solid #DDDDDD !important; width: 96px !important; height: 96px !important;" src="http://static.wumii.com/site_images/2011/04/02/4894661.jpg" width="96px" height="96px" /><br />
                        <font size="-1" color="#333333" style="display: block !important; line-height: 15px !important; width: 102px !important; font: 12px/15px arial !important; height: 60px !important; margin: 3px 0 0 0 !important; padding: 0 !important; overflow: hidden !important;">Dropbox网盘的15个应知必会的高级使用技巧（1）</font>
                    </a>
                </td>
        </tr>
    
    <tr>
        <td colspan="5" align="right">
            <a style="text-decoration: none !important;" href="http://www.wumii.com/widget/relatedItems.htm" target="_blank" title="无觅相关文章插件">
                <font size="-1" color="#bbbbbb" style="display: block !important; font-family: arial !important; padding: 5px 0 !important; font-size: 12px !important; color: #bbb !important;">无觅</font>
            </a>
        </td>
    </tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.syncoo.com/my-php-dropbox-gallery.htm/feed</wfw:commentRss>
		<slash:comments>16</slash:comments>
		</item>
	</channel>
</rss>

