Ninjakreborn Posted April 18, 2006 Share Posted April 18, 2006 "Although most numbers in PHP are entered in using decimal (base 10), you may also specify them in hexadecimal (base 16) or octal (base 8)."what does that mean specifically. Quote Link to comment Share on other sites More sharing options...
poirot Posted April 18, 2006 Share Posted April 18, 2006 It simply means you can use hex or octal in your scripts anyways. For example:$var = 0xff;Is the same thing as:$var = 255 Quote Link to comment Share on other sites More sharing options...
Ninjakreborn Posted April 18, 2006 Author Share Posted April 18, 2006 thanks that might be very helpful. Thanks. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.