如何显示 Flash 和 PHP 之间的数据传输进度?下面是我用来通过 PHP 上传 base64 编码图像的 AS3 代码。
var scriptLoader:URLLoader = new URLLoader();
var scriptVars:URLVariables = new URLVariables();
var scriptRequest:URLRequest = new URLRequest("https://www.example.com/sendit.php");
var imagedata = Base64.encode(mybitmap);
scriptVars.theimage = imagedata
scriptRequest.method = URLRequestMethod.POST;
scriptRequest.data = scriptVars;
scriptLoader.load(scriptRequest);
(服务器运行 PHP 版本 5.3.10)