首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 媒体动画 > flex >

flex 图片下传组件 php服务

2012-09-23 
flex 图片上传组件 php服务???php$destination_folderupload/ //上传文件路径$xmlstr $GLOBALS[HTTP

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

?

热点排行