Diferencia entre revisiones de «Plantilla:PHP/OperadoresExpresiones»
De WikiEducator
(→Operadores) |
(→Operadores) |
||
Línea 46: | Línea 46: | ||
{|class="wikitable col1cen col2cen center" style="width:600px;" | {|class="wikitable col1cen col2cen center" style="width:600px;" | ||
− | |+ style="color:white;background:blue;"font-size:1.50em;OPERADORES HABITUALES EN PHP | + | |+ style="color:white;background:blue;"font-size:1.50em;|OPERADORES HABITUALES EN PHP |
|- | |- | ||
|style="width:160px;color:white;background:green;font-size: 1.25em;"|TIPO DE OPERADOR | |style="width:160px;color:white;background:green;font-size: 1.25em;"|TIPO DE OPERADOR | ||
Línea 68: | Línea 68: | ||
|style="width:350px;color:white;background:red;font-size: 1.25em;"|booleano | |style="width:350px;color:white;background:red;font-size: 1.25em;"|booleano | ||
|style="width:200px;color:white;background:red;font-size: 1.25em;"|numérico | |style="width:200px;color:white;background:red;font-size: 1.25em;"|numérico | ||
+ | |style="width:200px;color:white;background:red;font-size: 1.25em;"|string | ||
|- | |- | ||
|} | |} | ||
Línea 75: | Línea 76: | ||
{|class="wikitable col1cen col2cen center" style="width:600px;" | {|class="wikitable col1cen col2cen center" style="width:600px;" | ||
− | |+ style="color:white;background:blue;"font-size:1.50em;OTROS OPERADORES MENOS HABITUALES | + | |+ style="color:white;background:blue;"font-size:1.50em;|OTROS OPERADORES MENOS HABITUALES |
|- | |- | ||
|style="width:160px;color:white;background:green;font-size: 1.25em;"|TIPO DE OPERADOR | |style="width:160px;color:white;background:green;font-size: 1.25em;"|TIPO DE OPERADOR | ||
Línea 91: | Línea 92: | ||
|style="width:200px;color:white;background:red;font-size: 1.25em;"|& | ^ ~ << >> | |style="width:200px;color:white;background:red;font-size: 1.25em;"|& | ^ ~ << >> | ||
|style="width:200px;color:white;background:red;font-size: 1.25em;"|@ | |style="width:200px;color:white;background:red;font-size: 1.25em;"|@ | ||
+ | |style="width:200px;color:white;background:red;font-size: 1.25em;"|`` | ||
|- | |- | ||
Línea 99: | Línea 101: | ||
|style="width:200px;color:white;background:red;font-size: 1.25em;"|numérico | |style="width:200px;color:white;background:red;font-size: 1.25em;"|numérico | ||
|style="width:200px;color:white;background:red;font-size: 1.25em;"|no retorna valor anula comunicación de errores si se pordujeran | |style="width:200px;color:white;background:red;font-size: 1.25em;"|no retorna valor anula comunicación de errores si se pordujeran | ||
+ | |style="width:200px;color:white;background:red;font-size: 1.25em;"|resultado del comando ejecutado | ||
|- | |- | ||
|} | |} |
Revisión de 10:55 12 dic 2022
//Declara una variable entera y asigna el valor 4 //Usando el operador unario, incrementa una unidad y compáralo con el valor 5 //Muestra un mensaje mostrando su valor //Compáralo con el valor 4 y decrementa en una unidad , muestra información de que no es igual y muestra el valor //Analiza la salida y prueba deferentes situaciones
|
Operadores con asignación en una misma variable
- Cuando la variable donde asignamos el resultado de la expresión forma parte de la expresión, la podemos simplificar
- Veamos el siguiente ejemplo
$a=$a*5;
- Es igual que hacer
$a*=5;
- Esto lo podemos hacer con cualquiera de los operadores aritméticos