From professional translators, enterprises, web pages and freely available translation repositories.
there is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
tento překlad není příliš korektní, ale v české programátorské mluvě neexistuje vhodný termín.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
if statements can be nested indefinitely within other if statements, which provides you with complete flexibility for conditional execution of the various parts of your program.
konstrukty if mohou být libovolně vnořovány do jiných konstruktů if, což poskytuje plnou flexibilitu podmíněného provádění různých částí programu.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
the if construct is one of the most important features of many languages, php included. it allows for conditional execution of code fragments. php의 if 문은 c와 비슷하다.:
poku je expr ohodnocen jako true, php provede statement; je-li ohodnocen jako false, neprovede se nic.
Last Update: 2011-10-24
Usage Frequency: 1
Quality:
a very common type of expressions are comparison expressions. these expressions evaluate to either 0 or 1, meaning false or true (respectively). php supports (bigger than), = (bigger than or equal to), == (equal), != (not equal), (smaller than) and = (smaller than or equal to). these expressions are most commonly used inside conditional execution, such as if statements.
na začátku kapitoly bylo řečeno, že si popíšeme různé typy konstruktů, a jak bylo slíbeno, výrazy mohou být konstrukty.
Last Update: 2011-10-24
Usage Frequency: 1
Quality: