用PHP将ByteArray保存到文件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用PHP将ByteArray保存到文件相关的知识,希望对你有一定的参考价值。
A short snippet of code to save a ByteArray into any file
//-- your byte array you want to save var bytes: ByteArray = new ByteArray(); //-- set up correct url request using post in binary mode var loader: URLLoader = new URLLoader(); request.contentType = 'application/octet-stream'; request.method = URLRequestMethod.POST; request.data = bytes; loader.load( request ); And of course you need a PHP file like this: $fp = fopen( 'file.txt', 'wb' ); fwrite( $fp, $GLOBALS[ 'HTTP_RAW_POST_DATA' ] ); fclose( $fp );
以上是关于用PHP将ByteArray保存到文件的主要内容,如果未能解决你的问题,请参考以下文章
如何将 ByteArray(来自 Flash)和一些表单数据发送到 php?