www.digitever.net www.digitever.net

Operadores

Operadores unitarios

"; echo "\$texto1 = $texto1

"; echo '$numero1 = ' . ++$numero1 . '
'; echo '$numero1 = ' . $numero1++ . '
'; echo "\$numero1 = $numero1

"; echo '$numero1 = ' . --$numero1 . '
'; echo '$numero1 = ' . $numero1-- . '
'; echo "\$numero1 = $numero1

"; echo '$texto1 = ' . ++$texto1 . '
'; echo '$texto1 = ' . $texto1++ . '
'; echo "\$texto1 = $texto1

"; echo '$texto1 = ' . --$texto1 . '
'; echo '$texto1 = ' . $texto1-- . '
'; echo "\$texto1 = $texto1

"; ?>