Created
February 7, 2017 21:57
-
-
Save YurePereira/d4c7406d83b5b0b08c653f1e5ecd554b to your computer and use it in GitHub Desktop.
Obtendo a quantidade de elementos existentes em um Array
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 | |
| $myNumericArray = array(11, 232, 43, 45, 10); | |
| echo count($myNumericArray);//Print: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment