读书人

flex 图片下传组件 php服务

发布时间: 2012-09-23 10:28:11 作者: rapoo

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;?>

?

读书人网 >flex

热点推荐