Skip to content

Instantly share code, notes, and snippets.

@MubinSayed
Last active September 25, 2018 03:39
Show Gist options
  • Save MubinSayed/414a5b1aa249be106154c117672ffd0c to your computer and use it in GitHub Desktop.
Save MubinSayed/414a5b1aa249be106154c117672ffd0c to your computer and use it in GitHub Desktop.
php arrays
<?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