Last active
September 25, 2018 03:39
-
-
Save MubinSayed/414a5b1aa249be106154c117672ffd0c to your computer and use it in GitHub Desktop.
php arrays
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 | |
// indexed array examples | |
$list = array( 'mango', 'apple', 'grape', 'orange' ); | |
// or | |
$list = [ 'mango', 'apple', 'grape', 'orange' ]; | |
//or | |
$list = array(); | |
$list[0] = 'mango'; | |
$list[1] = 'apple'; | |
$list[2] = 'grape'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment