Skip to content

Instantly share code, notes, and snippets.

@hfm
Created October 22, 2013 09:48
Show Gist options
  • Select an option

  • Save hfm/7097930 to your computer and use it in GitHub Desktop.

Select an option

Save hfm/7097930 to your computer and use it in GitHub Desktop.
array(4) {
[0]=>
string(5) "okkun"
[1]=>
string(6) "gussan"
[4]=>
string(5) "kitak"
[5]=>
string(6) "keoken"
}
<?php
$mixed_array = array(
'okkun',
'gussan',
'4' => 'kitak',
'keoken',
);
var_dump($mixed_array);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment