Log in

View Full Version : Ternary operators?


Dean C
04-25-2003, 12:35 PM
I think i have the right word :)?

Do you use them much guys as in my PHP book its saying only use them for cleaner and more compact code :)?

- miSt

mr e
04-25-2003, 04:29 PM
what are they?

filburt1
04-25-2003, 04:47 PM
I use them only if they themselves don't exceed 80 chars plus the indent.

$test = (3 == 3 ? "duh" : "wth?");

$rest will contain (it better, at least) "duh."

Dean C
04-25-2003, 05:41 PM
I see - but you "do use them" ? :)

- miSt

Xenon
04-26-2003, 03:55 PM
no, because it's crappy coding.

very hard to read if you aren't familar with the code itself.

filburt1
04-26-2003, 04:26 PM
For very quick stuff they're alright and can greatly simplify code...