What doesn't this work:

(int)08 == (int)09==0

But this and this does?

(int)07==7 
(int)06==6
link|improve this question
2  
I would actually take try make your question a little more topical and then put your example in the question... – James Dec 7 '09 at 13:41
I tried to give it a go. – George Stocker Dec 7 '09 at 13:42
feedback

5 Answers

up vote 14 down vote accepted

08 is in octal base (because it starts with a 0), hence it is invalid. See the documentation.

link|improve this answer
feedback

because 08 and 09 are not valid octal numbers. see warning in docs.

link|improve this answer
feedback

You're type casting an invalid number in octal base.

link|improve this answer
feedback
// Syntax error
//(int)08 == (int)09==0

// This works
(int)08==0;
(int)09==0;

// This also works
(int)08 == ((int)09==0);
link|improve this answer
feedback

To use hexadecimal notation precede the number with 0x.

Therefore,

 $num = (int)0x9
 $num == 9
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.