Created
March 24, 2013 18:27
-
-
Save TiuTalk/5232943 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?php | |
// Velha sintaxe de arrays | |
$nome = array('Thiago', 'Fulano', 'Silva')[1]; // Fulano | |
// Nova sintaxe de arrays | |
$nome = ['Thiago', 'Fulano', 'Silva'][2]; // Silva | |
// Também funciona com strings: | |
$letra = 'Thiago'[0]; // T | |
$letra = 'Thiago'[1]; // h | |
$letra = 'Thiago'[5]; // o |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment