flex 图片上传组件 php服务
?
?<?php
$destination_folder="upload/"; //上传文件路径$xmlstr =$GLOBALS[HTTP_RAW_POST_DATA];if(empty($xmlstr)) $xmlstr = file_get_contents('php://input');if(!file_exists($destination_folder))mkdir($destination_folder);$jpg = $xmlstr;//得到post过来的二进制原始数据$imgUrl=$destination_folder.time().".jpg";$file = fopen($imgUrl,"w");//打开文件准备写入fwrite($file,$jpg);//写入fclose($file);//关闭echo $imgUrl;?>?