Versio

if then else korte notatie, hoe heet dit?

Overzicht Reageren

Emmanuel Delay

Emmanuel Delay

07/08/2008 10:43:00
Quote Anchor link
Kent iemand de technische term voor de korte notatie van de if/then/else?

bv.
Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
<? result = ($a==5 ? 10 : 20 ) ?>

Ipv.

Code (php)
PHP script in nieuw venster Selecteer het PHP script
1
2
3
4
5
6
7
8
9
<? if( $a==5 )
{

result = 10;
}

else
{
result = 20;
}

?>


Ik gebruik dat volop, maar ik heb geen idee wat de naam is van deze notatie.
Gewijzigd op 01/01/1970 01:00:00 door Emmanuel Delay
 
PHP hulp

PHP hulp

25/05/2012 03:28:18
Gesponsorde koppelingen:
 
Douwe

Douwe

07/08/2008 10:47:00
Quote Anchor link
the ternary operator :)
 
Emmanuel Delay

Emmanuel Delay

07/08/2008 10:59:00
Quote Anchor link
Thanks
 



Overzicht Reageren