Last active
February 7, 2017 13:23
-
-
Save YurePereira/0b7a9657efd291a7df466a003dba522c to your computer and use it in GitHub Desktop.
Create a numeric Array in the 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 | |
| $myNumericArray = array( | |
| 100,// Tipo de dado numérico | |
| new DateTime(),// Tipo de dado Object | |
| 'String Any',// Tipo de dado String | |
| 89, | |
| 90 | |
| ); | |
| var_dump($myNumericArray); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment