PHP buffer problem
Posted: Wed Aug 15, 2007 5:30 am
Hi,
I would like make a buffer into different type variables (int2, int4, uint2 etc.) with PHP and i will send on socket for a server application.
example:
I have variables:
I need a buffer [ConnectionId,LastOpCode,...]
I don't know how can i begin this problem.
Please, give me any idea.
Thank You in advance,
Andras
I would like make a buffer into different type variables (int2, int4, uint2 etc.) with PHP and i will send on socket for a server application.
example:
I have variables:
Code: Select all
$this->ConnectionId = new VARIANT (-1,VT_I2);
$this->LastOpCode = new VARIANT (65535,VT_UI2);
....I don't know how can i begin this problem.
Please, give me any idea.
Thank You in advance,
Andras