jasondinh
jasondinh

Reputation: 928

Decode amf3 object using PHP

My flash code:

var request=new URLRequest('http://localhost/test.php');
request.method = URLRequestMethod.POST;
var data = new URLVariables();
var bytes:ByteArray = new ByteArray();
bytes.objectEncoding = ObjectEncoding.AMF3;
//write an object into the bytearray
bytes.writeObject( 
      { myString:"Hello World"} 
);
data.data = bytes;
request.data = data;

var urlLoader:URLLoader = new URLLoader();
urlLoader.dataFormat = URLLoaderDataFormat.BINARY;
urlLoader.addEventListener(Event.COMPLETE, onCompleteHandler);
urlLoader.load(request);

function onCompleteHandler(evt:Event):void {
 trace(evt.target.data);
}

PHP code:

define("AMF_AMF3",1); 
$data = $_POST['data'];
echo amf_decode($data, AMF_AMF3);

Basically I need to send an AMF3 object from Flash to PHP and unserialize it. I'm using AMFEXT extension but couldn't get it to work. Any idea?

Upvotes: 2

Views: 2872

Answers (4)

Shahor
Shahor

Reputation: 415

just take a look at the AMFPHP project, I used it on a chat project and it is really simple to use and efficient.

Upvotes: -1

jaith
jaith

Reputation: 11

I wrote a simple AMF3 Serializer/Deserialize in PHP for my project FlashMOG: here

It would need a bit of adaptation.

Upvotes: 1

neoxic
neoxic

Reputation: 565

You can try this one - http://sourceforge.net/projects/php-amf3/

Upvotes: 2

jolyonruss
jolyonruss

Reputation: 1840

Have you had a look at AMFPHP: http://www.amfphp.org/

"AMFPHP is a free open-source PHP implementation of the Action Message Format(AMF). AMF allows for binary serialization of Action Script (AS2, AS3) native types and objects to be sent to server side services. AMFPHP is challenged with implementing the entire AMF protocol to be an alternative to Flex Data Services (AMF3) and Flash Remoting (AMF0)"

Upvotes: 0

Related Questions