Valhalla Legends Archive

Programming => Web Development => Topic started by: Augural Sentinel on February 20, 2006, 10:18 AM

Title: pack()
Post by: Augural Sentinel on February 20, 2006, 10:18 AM
I don't like using other people's code, especially when I don't understand exactly how something works.  So, after looking through Joe's PHP script for connecting to Battle.net, I started looking through the PHP manual.

So my question is this.  Does PHP's pack() (http://us3.php.net/pack) create the correct type of Endians that is needed to log onto Battle.net when you use 'v' and 'V'?

$a = pack('V', 0x00);
$b = pack('v', 0x00);

And would the above be the correct usage?  Or do I need to use a different format character instead of 'V'?
Title: Re: pack()
Post by: rabbit on February 20, 2006, 01:03 PM
If you read the descriptions of format on php.net, it tells you.
Title: Re: pack()
Post by: Augural Sentinel on February 20, 2006, 05:06 PM
Eh, it still doesn't help a whole lot.  Do I need short or long variable types?
Title: Re: pack()
Post by: rabbit on February 20, 2006, 06:14 PM
It helps entirely.

Read the docs.

http://bnetdocs.valhallalegends.com/content.php?Section=d&id=8
http://us2.php.net/manual/en/function.pack.php
Title: Re: pack()
Post by: Augural Sentinel on February 20, 2006, 06:28 PM
I completely forgot to check the B.net docs.  You're right.  I'm just retarded.