here you can notice that these numeric values of phpinfo
are similar to certain things in the binary system:
-1, coded in 7 digits:
111 1111
look at this:
1+2+4+8+16+32+64=127
unsigned,127 is:
111 1111
so, take a look at this: the way to get all function is to add all of them. zero is nothing.-1 is all.
so you can pass option with a negative number.
for example:
<?php phpinfo(48) ?>
is also:
<?php phpinfo(-80) ?>
48 = 32 + 16
-80= 0 - 64 - 8 - 4 - 2 - 1
so you can see in negative mode it like that:
not nothing
not all (-1) don't forget it !
not option 64
not option 8
not option 4
not option 2
so, that's good if you don't want option 8, you will do this:
not nothing(0)
not all(-1)
not option 8(-1)
you got:
<?php phpinfo(-9); ?>
hope this will be useful, that's my 1rst post ^^