diff --git a/guide/spanish/php/switch/index.md b/guide/spanish/php/switch/index.md index 49c7d9b2a1..2cb2204cd9 100644 --- a/guide/spanish/php/switch/index.md +++ b/guide/spanish/php/switch/index.md @@ -1,8 +1,8 @@ --- title: Switch -localeTitle: Cambiar +localeTitle: Switch --- -## Cambiar +## Switch En PHP, la sentencia `Switch` es muy similar a la sentencia Javascript `Switch` (consulte la [Guía de Javascript Switch](/javascript/switch-statements) para comparar y contrastar). Permite la prueba rápida de casos con muchas condiciones diferentes posibles, el código también es más legible. @@ -10,26 +10,26 @@ En PHP, la sentencia `Switch` es muy similar a la sentencia Javascript `Switch` ```php