Från professionella översättare, företag, webbsidor och fritt tillgängliga översättningsdatabaser.
there is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
además de ser más corto y claro, también resulta en una ejecución más rápida.
Senast uppdaterad: 2011-10-24
Användningsfrekvens: 1
Kvalitet:
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.
las sentencias if se pueden anidar indefinidamente dentro de otras sentencias if, lo cual proporciona una flexibilidad completa para ejecuciones condicionales en las diferentes partes de tu programa.
Senast uppdaterad: 2011-10-24
Användningsfrekvens: 1
Kvalitet:
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와 비슷하다.:
la construcción if es una de las más importantes características de muchos lenguajes, incluido php.
Senast uppdaterad: 2011-10-24
Användningsfrekvens: 1
Kvalitet:
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.
el postincremento, escrito '$variable++', se evalúa al valor original de $variable antes de realizar el incremento (php incrementa la variable después de leer su valor, de ahí el nombre 'postincremento').
Senast uppdaterad: 2011-10-24
Användningsfrekvens: 1
Kvalitet: