<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[Space.As's Blog]]></title> 
<link>http://www.woria.cn/blog/index.php</link> 
<description><![CDATA[我觉得活着是一定没有意义的，但是继续活着也许会碰到有意思的事情。如我遇见你，如你遇见那花。]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[Space.As's Blog]]></copyright>
<item>
<link>http://www.woria.cn/blog/read.php/596.htm</link>
<title><![CDATA[php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>Space.As &lt;admin@yourname.com&gt;</author>
<category><![CDATA[学习笔记]]></category>
<pubDate>Thu, 12 Nov 2009 06:53:15 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm</guid> 
<description>
<![CDATA[ 
	最近在做Flash在线裁剪图片 生成图片的东西。<br/>通过Flash POST 图片的二进制数据给php，由php生成图片保存。<br/><br/>开始想到用$_POST来接受。后来发现行不通。<br/>查阅了很多资料 明白了所以然，这里做一个笔记：<br/><br/>于PHP默认只识别application/x-www.form-urlencoded标准的数据类型。<br/>因此，对型如text/xml 或者 soap 或者 application/octet-stream 之类的内容无法解析，如果用$_POST数组来接收就会失败！<br/>故保留原型，交给$GLOBALS['HTTP_RAW_POST_DATA'] 来接收。<br/><br/>另外还有一项 php://input 也可以实现此这个功能<br/><br/>php://input 允许读取 POST 的原始数据。和 $HTTP_RAW_POST_DATA 比起来，它给内存带来的压力较小，并且不需要任何特殊的 php.ini 设置。php://input和 $HTTP_RAW_POST_DATA 不能用于 enctype="multipart/form-data"。<br/><br/>我在Flash中使用JPGEncoder把BitMapData转成二进制，然后post给php<br/><br/>php页面代码如下：<br/><div class="code"><br/>&lt;?php<br/>$filename=&quot;teststream.jpg&quot;;//要生成的图片名字<br/>if (!empty($GLOBALS&#91;&quot;HTTP_RAW_POST_DATA&quot;&#93;))<br/>&#123;<br/>&nbsp;&nbsp;$jpg = $GLOBALS&#91;&quot;HTTP_RAW_POST_DATA&quot;&#93;;//得到post过来的二进制原始数据<br/>&nbsp;&nbsp;$file = fopen(&quot;cache/pic/&quot;.$filename,&quot;w&quot;);//打开文件准备写入<br/>&nbsp;&nbsp;fwrite($file,$jpg);//写入<br/>&nbsp;&nbsp;fclose($file);//关闭<br/>&#125;<br/>?&gt; <br/><br/></div><br/><br/><br/>这个小东西用于我自己写的通讯录系统。上传裁剪用户头像。<br/>这里先放出图片预览。后头正式发布在给demo和src<br/><br/><a href="http://www.woria.cn/blog/attachment.php?fid=45" target="_blank"><img src="http://www.woria.cn/blog/attachment.php?fid=45" class="insertimage" alt="点击在新窗口中浏览此图片" title="点击在新窗口中浏览此图片" border="0"/></a><br/>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2580</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>foolman &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sun, 03 Jan 2010 14:17:05 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2580</guid> 
<description>
<![CDATA[ 
	我顶你个肺阿！<br/>多谢楼主！<br/>有空加QQ：738298323 <br/>一起交流！
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2593</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>青青 &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 28 Jan 2010 08:00:06 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2593</guid> 
<description>
<![CDATA[ 
	楼主啥时候放上传头像的源文件啊？
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2647</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>zliuwei3 &lt;liuwei111@chongsoft.org&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 02 Sep 2010 04:35:11 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2647</guid> 
<description>
<![CDATA[ 
	说的没错 这个世界就这样,支持下有时间来我的<a href="http://www.daxue-edu.net" target="_blank">办文凭</a>看下<br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <a href="http://www.hyweixiu.com.cn" target="_blank">回龙观家电维修</a> <a href="http://www.daxue-edu.net" target="_blank">代办文凭</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2650</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>nenlong6668 &lt;fo1cp24@yrgshuaigun.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 02 Sep 2010 09:36:23 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2650</guid> 
<description>
<![CDATA[ 
	说的非常好，非常感谢，必须顶你！！！<br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/> <br/><br/><img src="http://www.woria.cn/blog/template/cnblue/images/viewimage.gif" alt=""/><a href="http://images.5d6d.net/dz7/templates/default/sigline.gif" target="_blank">点击在新窗口中浏览此图片</a><br/><a href="http://images.5d6d.net/dz7/templates/default/sigline.gif" target="_blank">http://images.5d6d.net/dz7/templates/default/sigline.gif</a><br/><br/>欢迎来我的<a href="http://www.tudou.com/home/_73361840" target="_blank">博客</a>、MY<a href="http://ig37507873.i.ifensi.com/center/home/" target="_blank">博客</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2659</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>wrnbniouks &lt;ewpsdd@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Sat, 04 Sep 2010 03:40:51 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2659</guid> 
<description>
<![CDATA[ 
	不论天气好不好,都会上街的是女人;无论天气好不好，都不想逛街的是男人。<br/>即使已拥有上百支口红，还是会对下一支心动的是女人;即使内裤已千疮百孔,<a href="http://www.hz8w.cn" target="_blank">杭州装潢公司</a>，也要太太买回来才肯换的是男人。<br/>宁愿去IKEA买可爱书橱， 最贵也心甘情愿的是女人;宁愿弄得满头大汗，也要自己动手做家具的是男人。<br/>女人永远少双鞋，<strong>男人</strong>永远少部车。<br/>女人赚钱养衣服,<a href="http://www.hz221.cn" target="_blank">杭州洗衣机维修</a>，男人赚钱养股票。<br/>当对粉饼的要求愈来愈挑剔，女人就老了;当对裤子尺寸愈来愈不满意,<a href="http://www.zjmqzs.com" target="_blank">杭州别墅设计</a>，男人就老了。<br/>女人是购物篮，来者不拒;男人是供货商,<a href="http://www.hzmq.net" target="_blank">杭州家政</a>，能用就好。<br/>女人会欣赏买古龙水的男人，却不想与他结婚;男人会欣赏爱买书的女人,<a href="http://www.hzmqzs.com/geli.htm" target="_blank">杭州中央空调销售</a>，却不想和她上床,<a href="http://www.zjxyzs.com" target="_blank">杭州装饰</a>。<br/>女人买保险套送男友,<a href="http://www.jwwww.com" target="_blank">杭州长途搬家公司</a>，男人买<strong>保险</strong>套送朋友。<br/>女人总是记得什么时候收了什么花，因为全都是男朋友送的;男人从来不记得送了哪些花给女友，因为全是花店老板挑的。<br/>女为悦己者容，男为悦己而容。<br/>女人买可以让自己美丽的衣服,<a href="http://www.ylhz.net" target="_blank">杭州装修</a>，男人买不会让自己丢脸的衣服。<br/><strong>女人</strong>的黑色皮包是为了搭配造型， 男人的黑色皮夹是因为不怕弄脏,<a href="http://www.oojzo.com/system_menjin.htm" target="_blank">杭州办公楼装修</a>。<br/>女人喜欢纯白内衣，却会为讨男人欢心而穿性感睡衣;男人喜欢牛仔裤，却不会为了女人的面子而改穿西装。<br/>相关的主题文章：<br/> <br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://papagoarmy.com/shawn/post/76/#blogcomment196" target="_blank">男人与女人的区别超准确</a><br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.88537.com/blog/read.php/64.htm" target="_blank">男人与女人的区别超准确</a><br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.kvkens.com/read.php/58.htm" target="_blank">男人与女人的区别超准确</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2671</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>handdhel02 &lt;jeansmith2012@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Mon, 06 Sep 2010 13:05:14 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2671</guid> 
<description>
<![CDATA[ 
	Knightsbridge snow boots sales, or sales of products to promote the sales people always need to provide off-line stores issued by the observation. This way,<a href="http://www.nikeshoxbuy.com/nike-air-max-2010-c-218.html" target="_blank">nike air max 2010</a>, you can walk in someone else&#039;s Shi Jian, is available to the sale of a couple of their own discounts. This presentation is very cheap knightsbridge.Although trouble and time-consuming, can not pay, I think you can enjoy always.discount human supervision Knightsbridge Publishing. Auctions, liquidation sales or close to it, you know even the Internet, there is a boat for sale. The auction is the best way is one of the best for your choice of medium or high boots love search. Presenter Knightsbridge Room, online! Cheap Kurashikkukadi speaker! Viewing platform release is a larger sales tag, then the value of the trust may be recognized when it announced the [OK] the first person to be his best shoes. Since the publication discount rate cut to encourage more sales, this is the first time, perhaps the value of your money, if you one. You as the host boots.So here Kurashikkukadi mind, regardless of credit problems to acquire a pair of shoes, some people were released the best sales will not cut interest rates, who is the shop. The first method, the best shoes you will take 08 to Meng release enough money,<a href="http://www.mbtshoesgo.com" target="_blank">mbt sale</a>, just so you can buy from merchants. It does not put it online Kurashikkukadi very good, it will release 100% of sales and people&#039;s trust. Respect you enough money, you buy cheap professional Kadibutsu true classic, whether you until they are only from the best,<a href="http://www.toryshoes.com/tory-burch-sandals-c-6.html" target="_blank">tory burch sandals</a>, always more, because they are,<a href="http://www.nikeshoxbuy.com" target="_blank">nike shox sale</a>, what fruit more expensive boots<br/>相关的主题文章：<br/> <br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.tlccad.gov.cn/review.asp?NewsID=654" target="_blank">Nike Air Force 107</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2677</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>xiaoguais6 &lt;jeansmith2012@hotmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 07 Sep 2010 00:16:50 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2677</guid> 
<description>
<![CDATA[ 
	I introduced Chris Paul signature shoe glimpse of the upcoming fourth while back, Jordan CP3.IV, now let&#039;s look has been leaked. For the original article,<a href="http://www.airmaxdiscount.com/nike-air-max-2009-c-68.html" target="_blank">air max 2009</a>, now go directly to the collapse of the picture, cut the bottom of checks. Find Jordan CP3.IV on January release date (White / Orion Blue Edition),<a href="http://www.mbtshoeswalk.com/ugg-5825-classic-short-c-238.html" target="_blank">ugg classic short</a>, if not earlier <br/>The only rehearsal for the first time last week AJ1 armor,<a href="http://www.nikelebron7shoes.com/nba-basketball-shoes-tracy-mcgrady-c-149_157.html" target="_blank">tracy mcgrady shoes</a>, because it is exciting, because there is still worried about it,<a href="http://www.mbtshoeswalk.com/ugg-5819-classic-cardy-c-240.html" target="_blank">ugg classic cardy</a>, it will be a one-off, like the Nike Foamposite large. Ah not so, because the air Jordan 1 armor \One of two months. Check out a few looks in the next promotion. <br/> <br/>相关的主题文章：<br/> <br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://jjw.eegn.gov.cn/review.asp?NewsID=637" target="_blank">Nike Air Force One High Jones Beach</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2681</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>xiaoguaii6 &lt;alexnechaev1@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Tue, 07 Sep 2010 15:52:48 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2681</guid> 
<description>
<![CDATA[ 
	Tory Burch Reva,<a href="http://www.mbtshoeswalk.com" target="_blank">cheap ugg boots</a><br/>help you attract the formal establishment of his website<br/>sunny day should go to a walk.Tory Burch shoes to go to appointments or travel must be completed on a satisfactory capacity to attract him vision.Today introduced me to three beautiful Tory Burch Reva Ballet Flats Sandals Festival They are very suitable for travel,<a href="http://www.airmaxdiscount.com/air-max-tailwind-20092010-c-102.html" target="_blank">air max tailwind</a>, the Conservative Party Burch flats,<a href="http://www.mbtshoesgo.com/nike-air-force-1-c-139.html" target="_blank">nike air force 1</a>, whether you bring any clothes to build the ideal.<br/>Tory Burch Reva patent ballet flat shoes pumps pink pink patent leather function. Tory Burch handbags pink sweet people feel this is a very beautiful game apparel.<br/>A holiday essential,<a href="http://www.nikeshoxbuy.com/nike-air-max-2009-c-227.html" target="_blank">nike air max 2009</a>, beloved of Tory Burch boots patent ballet flat shoes black / pink in the new shape.It return is black / pink patent leather, the fashion and design of the logo, a unique feeling, which will be your perfect match pink choice.Black is a typical portfolio.<br/> <br/>相关的主题文章：<br/> <br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.fbsjs.sdnu.edu.cn/review.asp?NewsID=500" target="_blank">Nike Air Force 1 Premium Jones Beach</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2696</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>ctosdumofsp &lt;cposdum@gmail.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 09 Sep 2010 07:10:29 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2696</guid> 
<description>
<![CDATA[ 
	金庸是性情中人，此公血肉丰满爱恨清晰。他瞧不起中国传统读书人，笔下主人公威震江湖的基本属于文盲，没几个读过书，读过也不上路。他平生第一长项是写小说，办商业报纸的水平也很不错。可此公偏偏瞧不起“俗文学”和铜臭，晚年又是入庙堂又是当历史博导。在<a href="http://www.0571o.cn" target="_blank">杭州装饰</a>离开<a href="http://www.0571ww.cn" target="_blank">杭州伞厂</a>北京飞赴<a href="http://www.zjxyzs.com" target="_blank">杭州写字楼装修</a>欧洲之前<a href="http://www.0571z.cn" target="_blank">杭州办公楼装修</a>同样<a href="http://www.hzylin.cn/" target="_blank">杭州空调维修</a>不清楚，他们<a href="http://www.hzmq.net" target="_blank">杭州家政</a>是否到<a href="http://www.hzylin.cn/zh001.htm" target="_blank">杭州保洁</a>公安<a href="http://www.zjmqzs.com" target="_blank">杭州装修</a>部门<a href="http://www.zjmqzs.com" target="_blank">杭州装修公司</a>协查，是<a href="http://www.ylhz.net" target="_blank">杭州装饰公司</a>否保留<a href="http://www.js571.cn/kt001.htm" target="_blank">杭州格力空调维修</a>他们的<a href="http://www.mqktw.com" target="_blank">杭州春兰空调维修</a>工作职位<a href="http://www.hzzrs.com" target="_blank">杭州美的空调维修</a>等等，都<a href="http://www.hz8888w.cn/14.htm" target="_blank">杭州科龙空调维修</a>没有<a href="http://www.hzylin.cn/kt034.htm" target="_blank">杭州东宝空调维修</a>一个<a href="http://www.js571.cn/html/news/3786.htm" target="_blank">杭州下城区空调维修</a>明确的<a href="http://www.hzzrs.com" target="_blank">杭州上城区空调维修</a>说法，这<a href="http://www.hzylin.cn/kt001.htm" target="_blank">杭州拱墅区空调维修</a>被认为是公安<a href="http://www.vooec.com/trss/2639736.html" target="_blank">杭州下沙空调维修</a>带走二人后开始<a href="http://www.hzmq.net" target="_blank">杭州管道疏通公司</a>走程序的信号。<br/>相关的主题文章：<br/> <br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.ahga.gov.cn/hsga/ga/review.asp?NewsID=1409" target="_blank">读过也不上路</a><br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://www.jywjw.gov.cn/Review.asp?NewsID=97" target="_blank">读过也不上路</a><br/>&nbsp;&nbsp;<br/>&nbsp;&nbsp; <a href="http://daj.ahyx.gov.cn/Review.asp?NewsID=88" target="_blank">读过也不上路</a>
]]>
</description>
</item><item>
<link>http://www.woria.cn/blog/read.php/596.htm#blogcomment2699</link>
<title><![CDATA[[评论] php接收二进制文件转换成图片，php://input $GLOBALS[HTTP_RAW_POST_DATA]]]></title> 
<author>nccai7270 &lt;ngcais67x0@163.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 09 Sep 2010 15:28:21 +0000</pubDate> 
<guid>http://www.woria.cn/blog/read.php/596.htm#blogcomment2699</guid> 
<description>
<![CDATA[ 
	It really is a dream for all girls to come with a princess and then decide, true to the whole range of clothing and accessories to be agreed. The aura is all great and majestic nature. Then we moved Everybodys Barbie Dress Up Game aligned along. She has a fashion icon for years and decades. With the online edition of dressing up games for girls and is available,<a href="http://pets-party.com" target="_blank">pets party</a>, the choice is a factor to affect the clouds. Imagine a list of clothing and accessories available online and how you can support your style of many different and unique.
]]>
</description>
</item>
</channel>
</rss>