phpbar.de logo

Mailinglisten-Archive

AW: [php] Bittest bei einer Variable

AW: [php] Bittest bei einer Variable

Wolfgang Hauck php_(at)_phpcenter.de
Thu, 6 Jun 2002 13:06:53 +0200


>um mehrere logische unterschiedliche Felder in eine Tabelle schreiben zu
>können brauche ich eine Funktion, die mir aus einer Numerischen Variable den
>Wert eines bestimmten Bits zurückgibt.
>Beispiel:
>Variable=11
>Bitweise=1011
>a=funktion(variavle, 1)

Hi Kay,

$a & $b And Bits that are set in both $a and $b are set.
$a | $b Or Bits that are set in either $a or $b are set.
$a ^ $b Xor Bits that are set in $a or $b but not both are set.
~ $a Not Bits that are set in $a are not set, and vice versa.
$a << $b Shift left Shift the bits of $a $b steps to the left (each step means
"multiply by two")
$a >> $b Shift right Shift the bits of $a $b steps to the right (each step
means "divide by two")

MFG Wolfgang


php::bar PHP Wiki   -   Listenarchive