Created
September 25, 2018 02:12
-
-
Save MubinSayed/7abf8933d1c0cbce44c246c24b56b366 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 | |
// associative array examples | |
$cart = array( 'Hotel' => 95, 'Chicken65' => 'Restaurant', 45 => 'xyz' ); | |
// or | |
$list = [ | |
'Hotel' => 95, | |
'Chicken65' => 'Restaurant', | |
45 => 'xyz' | |
]; | |
//or | |
$list = array(); | |
$list['Hotel'] = 95; | |
$list['Chicken65'] = 'Restaurant'; | |
$list[45] = 'xyz'; | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment