Created
March 8, 2017 02:49
-
-
Save YurePereira/e7504589649a6994fd0b02d723d4e26a to your computer and use it in GitHub Desktop.
Usando a função count no PHP.
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 | |
| $listFruits = array('Apple', 'Pineapple', 'Pear'); | |
| echo count($listFruits);//Output: 3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment