<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[张宴的博客]]></title> 
<link>http://zyan.cc/index.php</link> 
<description><![CDATA[Web系统架构与底层研发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[张宴的博客]]></copyright>
<item>
<link>http://zyan.cc/post/77/</link>
<title><![CDATA[显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>张宴 &lt;net@s135.com&gt;</author>
<category><![CDATA[电脑杂谈]]></category>
<pubDate>Tue, 13 Sep 2005 10:08:41 +0000</pubDate> 
<guid>http://zyan.cc/post/77/</guid> 
<description>
<![CDATA[ 
	　　<a href="http://www.zyan.cc/disk/down.php?user=Pl%7CCSb%7C%13%7F%25%5EVV%23%5E%0B&pass=%7Ec%07IV%04o%1D&mid=1tbiBwcpCz%252BWP4jzLgAAsh%250A7%250A8388762%250A1&funcid=readpart&part=3&filename=upu0.2.zip" target="_blank"><font color="blue">UGiA PHP UPLOADER V0.2</font></a><br/>　　<br/>　　利用php上传比较大的文件时，往往需要很长的等待时间，而且受网络和软件等的影响，经常会出现超时及上传失败的现象。如何在上传文件时实时的得到文件上传进度，以及如何避开php和其他因素的限制上传任意大小的文件呢？<br/>　　<br/>　　php同asp等其他语言对上传文件的处理方式不同，asp中可以用Request.BinaryRead流式的读取客户端提交的数据。php是把文件存放在临时文件夹中，在文件上传完成后才能够获取其信息以及对其进行操作。如果在上传过程中我们能够得到其临时文件的文件名，我们就可以通过判断临时文件的大小来来得到上传进度，不过好像没有办法得到。所以我们只能通过其他方式，就是利用php的socket扩展建立一个简单的服务器，把数据post到这个服务器上，然后再用我们自己的机制来处理。<br/>　　<br/>　　先说说流程，首先用php的socket函数库建立一个临时的http服务器，在某一端口监听，然后把ip地址和端口号通知客户端，客户端把上传表单提交到<a href="http://srvIpAddress:port(" target="_blank">http://srvIpAddress:port(</a>临时服务器), 临时服务器接受客户端请求，并读取post数据，分析并获取客户端上传的文件信息，把文件保存在服务器上，然后关闭临时服务器，释放资源，上传完成。 有点绕，不过思路还是简单的。<br/>　　<br/>　　UPU V0.2功能列表<br/>　　- 理论上可以上传无限大的文件<br/>　　- 实时显示上传状态、进度<br/>　　- 支持多文件上传以及与表单混合上传<br/>　　- 方便的用户调用接口<br/>　　- 兼容不同浏览器<br/>　　- …<br/>　　<br/>　　调用方法：<br/>　　1.下载upub0.2.rar, 将里面的upu目录解压到网站某一目录下。将upu/temp/, upu/files的目录权限改为755<br/>　　2.打开upu/misc/upu.js, 修改var basePath = "/upload/upu/"; 为upu相对于网站根目录的路径<br/>　　3.在包含上传表单的页面中加入<script type="text/javascript" src="upu/misc/upu.js"></script>,这里的upu/misc/upu.js为upu.js的路径，然后在<form>标签中加入onsubmit="return upuInit(this)"<br/>　　4.在你文件上传后处理的页面中使用$_POST来获取表单数据<br/>　　<br/>　　注意：<br/>　　1. UPU需要php4.3.0及其以上版本，并打开socket扩展，因为上传过程中需要开临时端口，请注意一下服务器的防火墙设置。<br/>　　2. upu/temp为上传临时文件存放目录, upu/files为文件存放目录,这两个目录可以在upu.class.php中指定。<br/>　　3. 你的<form>中要有enctype="multipart/form-data"这个属性，action为文件上传成功后的处理页面，也就是说你的<form>完全按照正常的思路来写就可以了，唯一不同的是需要加入onsubmit="return upuInit(this)"<br/>　　4. 上传成功后，可以使用$_POST来获取表单数据，如果是普通表单，直接$_POST[’表单名称’]即可获得其值，如果是一个文件，则返回这样一个数组<br/>　　$_POST[’表单名字’] = Array (<br/>　　[filename] => 文件名<br/>　　[clientpath] => 客户端文件路径<br/>　　[savepath] => 上传后文件保存路径及文件名<br/>　　[filetype] => 文件类型<br/>　　[filesize] => 文件大小<br/>　　[extension] => 扩展名<br/>　　)<br/>　　<br/>　　5. 本程序为自由软件；您可依据自由软件基金会所发表的GNU通用公共授权条款规定，就本程序再为发布与／或修改.本程序是基于使用目的而加以发布，然而不负任何担保责任；亦无对适售性或特定目的适用性所为的默示性担保。详情请参照GNU通用公共授权。<a href="http://gnu.freehostingguru.com/gpl/" target="_blank">http://gnu.freehostingguru.com/gpl/</a><br/>　　<br/>　　下载地址：<a href="http://www.zyan.cc/disk/down.php?user=Pl%7CCSb%7C%13%7F%25%5EVV%23%5E%0B&pass=%7Ec%07IV%04o%1D&mid=1tbiBwcpCz%252BWP4jzLgAAsh%250A7%250A8388762%250A1&funcid=readpart&part=3&filename=upu0.2.zip" target="_blank"><font color="blue">UGiA PHP UPLOADER V0.2</font></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment14292</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>louis vuitton uk &lt;fsf@fdg.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 23 Nov 2011 01:25:04 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment14292</guid> 
<description>
<![CDATA[ 
	This <a href="http://www.louisvuittonoutlets.org.uk" target="_blank">louis vuitton uk</a> for sale belongs to the sounding just what are termed as Louis Vuitton vintage best sellers, many other products and services for the reason that range appearing companies.You will easily notice the unfold zippers of this <a href="http://www.coachoutletstoreonlinefree.com" target="_blank">coach outlet store online</a>. That is the decoration. There are some inside pockets for you as well. They are easy to match your clothes and to carry.Let us inspire your inner beauty with fine <a href="http://www.christian-louboutinsale.org.uk" target="_blank">christian louboutin sale</a>. Purse the elegance in bridal wedding. Enjoy the fashion.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment17517</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>meimei &lt;xiangxiangxiang123@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 16 Apr 2012 01:07:15 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment17517</guid> 
<description>
<![CDATA[ 
	<a href="http://www.chanelukoutlets.org.uk" target="_blank">chanel uk</a><br/><a href="http://www.burberryukoutletuk.org" target="_blank">burberry uk</a><br/><a href="http://www.poloralphlaurenuks.org" target="_blank">ralph lauren uk</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment17518</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>meimei &lt;xiangxiangxiang123@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 16 Apr 2012 01:07:41 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment17518</guid> 
<description>
<![CDATA[ 
	<a href="http://www.chanelukoutlets.org.uk" target="_blank">chanel uk</a><br/><a href="http://www.burberryukoutletuk.org" target="_blank">burberry uk</a><br/><a href="http://www.poloralphlaurenuks.org" target="_blank">ralph lauren uk</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment17541</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>meimei &lt;xiangxiangxiang123@yahoo.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 16 Apr 2012 01:12:37 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment17541</guid> 
<description>
<![CDATA[ 
	<a href="http://www.christianlouboutinukuk.org" target="_blank">christian louboutin</a><br/><a href="http://www.tiffanyuksuk.org" target="_blank">tiffanys</a><br/><a href="http://www.gucciukbeltuk.org" target="_blank">gucci uk</a><br/><a href="http://www.frsaclouisvuittonsac.com" target="_blank">louis vuitton sac</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment24031</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>baozang &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 22 Sep 2012 05:33:30 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment24031</guid> 
<description>
<![CDATA[ 
	Lamo - Like Sebago, <a href="http://www.louisvuittoncanadalv.ca/" target="_blank">Louis Vuitton Canada</a>&nbsp;&nbsp;there are only about 40 styles of Lamo Footwear. Most of their footwear uses a suede leather traditional in <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Jeans</a>&nbsp;&nbsp;moccasins, though only about 1/3 of the footwear collection is a traditional moccasin look. <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Brand Jeans</a> The rest of the collection is slippers and UGG styled boots.Louis Vuitton Artsy The traditional moccasins do have a soft rubber sole making them great deck <a href="http://www.truereligionbrandjeans11.com/" target="_blank">True Religion Sale</a> shoes as well, however. Expect to pay between $50 and $60 for Lamo moccasins.&nbsp;&nbsp;Invicta watches have been here since 1837. They were made by Raphael Picard. Invicta watches got its name from a Latin word. The meaning of Invicta in Louis Vuitton Monogram Vernis Alma BB Amarante Latin is &quot;Invincible&quot;. Earlier these watches were not so popular but recently with its new men&#039;s collection this watch brand has gained a lot of popularity. Watches for many are a style statement and so they prefer to own the best piece. Invicta watches are popular as they are like a style statement.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment26418</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>让他 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 28 Nov 2012 08:04:10 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment26418</guid> 
<description>
<![CDATA[ 
	../8531
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment48452</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>keyuanyuan99 &lt;keyuanyuan99@163.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 11 Oct 2014 06:43:51 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment48452</guid> 
<description>
<![CDATA[ 
	<a href="http://www.north-face.eu.com" target="_blank"><strong>the north face jackets</strong></a><br/><a href="http://www.north-face.eu.com" target="_blank"><strong>north face outlet</strong></a><br/><a href="http://www.fitflop.us.com" target="_blank"><strong>fitflops outlet</strong></a><br/><a href="http://www.cheapuggssale.us.com" target="_blank"><strong>cheap ugg boots</strong></a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment49024</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>手錶品牌 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Wed, 29 Apr 2015 01:54:07 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment49024</guid> 
<description>
<![CDATA[ 
	<a href="http://buycopys88.com/" target="_blank">手錶品牌</a><a href="http://buycopys88.com/Patek-Philippe-watches.html" target="_blank">百達翡麗手錶專賣店</a><a href="http://buycopys88.com/Panerai-watches.html" target="_blank">竹東沛納海</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment49264</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>Jane Austen &lt;janeausten@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 19 Oct 2015 03:51:12 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment49264</guid> 
<description>
<![CDATA[ 
	有点绕，不过思路还是简单的。<br/><br/><a href="http://www.mulberryoutletbages.co.uk" target="_blank">replica handbags uk</a> &#124; <a href="http://www.shoplongchampoutletbags.com" target="_blank">longchamp outlet online</a> &#124; <a href="http://www.bankmill.co.uk/category/chanel-replica-handbags/" target="_blank">chanel replica handbags</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment50334</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>desy &lt;desy56@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 07 Mar 2017 04:30:28 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment50334</guid> 
<description>
<![CDATA[ 
	<a href="&quot;<a href="http://goo.gl/fgh1ds&quot;" target="_blank">http://goo.gl/fgh1ds&quot;</a>" target="_blank">supplier besi beton</a>&nbsp;&nbsp;<a href="http://bit.ly/1M92mpb" target="_blank">supplier besi beton</a><a href="https://goo.gl/JdUZyB" target="_blank">supplier besi beton ais</a>&nbsp;&nbsp;<a href="http://bit.ly/2fj747M" target="_blank">supplier besi beton ais</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment50337</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>desy &lt;desy56@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 07 Mar 2017 04:31:51 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment50337</guid> 
<description>
<![CDATA[ 
	<a href="http://bit.ly/1M92mpb" target="_blank">supplier besi beton</a><a href="http://bit.ly/2fj747M" target="_blank">supplier besi beton ais</a><a href="http://bit.ly/2fxUzs5" target="_blank">supplier besi beton Sni Ulir Polos</a><a href="http://bit.ly/2futS4Y" target="_blank">supplier besi beton bjku</a>]
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment51350</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>best alkaline water machines 2019 &lt;cumedo@jo-mail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 05 Jan 2019 13:30:20 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment51350</guid> 
<description>
<![CDATA[ 
	It is very important for everybody to consume as much as water in a day! Water being a universal solvent, it helps in many internal functions of the body.<a href="https://bestalkalinewatermachine2019.xyz/alkaline-water-machine-reviews/" target="_blank">best alkaline water machines 2019</a>&nbsp;&nbsp; &#124;<a href="https://bestalkalinewatermachine2019.xyz/alkaline-water-machine-reviews/" target="_blank">alkaline water machine</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment57536</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>happy wheels &lt;slitherioseo04@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 23 Mar 2020 07:52:33 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment57536</guid> 
<description>
<![CDATA[ 
	I do not know what to say really what you share very well and useful to the community, I feel that it makes our community much more developed, thanks <a href="https://run3sonline.com" target="_blank">run 3</a>
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment61660</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>Maxi &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 05 Jan 2021 08:55:11 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment61660</guid> 
<description>
<![CDATA[ 
	Крутое <a href="https://info-pinup.online/" target="_blank">онлайн казино Pin Up</a> имеет в своем запасе большое количество игровых автоматов, для того чтобы начать играть нужно зарегистрироваться и внести счет на баланс. Казино имеет лицензию Кюрасао, что обеспечивает чистую игру.
]]>
</description>
</item><item>
<link>http://zyan.cc/post/77/#blogcomment64470</link>
<title><![CDATA[[评论] 显示文件上传进度及上传任意大小文件的PHP类[转载]]]></title> 
<author>Louis &lt;mrwilliam6677@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 06 Jul 2021 09:29:41 +0000</pubDate> 
<guid>http://zyan.cc/post/77/#blogcomment64470</guid> 
<description>
<![CDATA[ 
	hireresearcher.co.uk is the best online team of experts that gives <a href="https://www.hireresearcher.co.uk/writing/essay-service/" target="_blank">best essay writing help</a> because they serve many students and they also have <a href="https://www.hireresearcher.co.uk/writing/cv-resume-service/" target="_blank">professional resume writers</a> and helping me in scoring good grades.
]]>
</description>
</item>
</channel>
</rss>