用PHP将ByteArray保存到文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP将ByteArray保存到文件相关的知识,希望对你有一定的参考价值。

A short snippet of code to save a ByteArray into any file
  1. //-- your byte array you want to save
  2. var bytes: ByteArray = new ByteArray();
  3.  
  4. //-- set up correct url request using post in binary mode
  5. var request:URLRequest = new URLRequest ( 'http://pathto/save.php' );
  6. var loader: URLLoader = new URLLoader();
  7. request.contentType = 'application/octet-stream';
  8. request.method = URLRequestMethod.POST;
  9. request.data = bytes;
  10. loader.load( request );
  11.  
  12. And of course you need a PHP file like this:
  13.  
  14. $fp = fopen( 'file.txt', 'wb' );
  15. fwrite( $fp, $GLOBALS[ 'HTTP_RAW_POST_DATA' ] );
  16. fclose( $fp );

以上是关于用PHP将ByteArray保存到文件的主要内容,如果未能解决你的问题,请参考以下文章

Adobe AIR的 - 硬盘上保存图像

如何将 ByteArray(来自 Flash)和一些表单数据发送到 php?

PHP PHP文件到byteArray

Android将文件作为ByteArray上传到WCF REST服务

转义命令/ ByteArray转换为可读文本C#

我在哪里更改此 Python 代码片段以将临时文件保存在 tmp 文件夹中?