Created
February 6, 2017 19:37
-
-
Save thproflord/1fff0764ce2582f2cffa8c658734a26f to your computer and use it in GitHub Desktop.
hola
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$arreglo = array( | |
'a' => 1, | |
'b' => 2, | |
'c' => 3, | |
'd' => 4, | |
'e' => 5, | |
'f' => 6 | |
); | |
$palabra = 'ole amigo como estas feo'; | |
$cont = 0; | |
while($cont < 24){ | |
array_key_exists($palabra[$cont], $arreglo) ? "Existe $palabra[$cont] en $cont" : "no existe $palabra[$cont]"; | |
$cont++; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment