phpbar.de logo

Mailinglisten-Archive

[php] (no subject)

[php] (no subject)

Christopher Czettel cjc_(at)_alaris.at
Tue, 7 Nov 2000 17:09:28 +0100


hi!

>oder gibt es soetwas wie
>if(($key == "art_a") &| ($key == "art_b) &| etc.
>			   ^^ soetwas wie und/oder
>
>Danke für etwaige Hilfe.
>Christoph

nimm doch einfach:

if(($key == "art_a") || ($key == "art_b) || etc.

bei || handelt es sich um ein normales OR und nicht um ein exklusives XOR
d.h.

p	q	p OR q	p	q	p XOR q
==================	===================
0	0	  0		0	0	   0
0	1	  1		0	1	   1
1	0	  1		1	0	   1
1	1	  1		1	1	   0

also sobald ein einziger wert "true" ist, ist die ganze aussage "true"

mfg

Christopher




php::bar PHP Wiki   -   Listenarchive