1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
# Crear filas $fila1 = "1","2","3","4","5","6","7","8","9","0","'","¡" $fila2 = "q","w","e","r","t","y","u","i","o","p","``","+" $fila3 = "a","s","d","f","g","h","j","k","l","ñ","´","ç" $fila4 = "<","z","x","c","v","b","n","m",",",".","-" # Crear dos matrices con las filas $teclado1 = $fila1,$fila2,$fila3,$fila4 $teclado2 = $fila1,$fila2,$fila3,$fila4 # Obtener el elemento 0,1 $teclado1[0][1] # Juntar las dos matrices creadas $3d = $teclado1,$teclado2 # Obtener el elemento 0,0,1 y 1,0,1 que será el mismo $3d[0][0][1] $3d[0][0][1] |