Skip to content

Instantly share code, notes, and snippets.

@walf443
Created November 27, 2012 04:11
Show Gist options
  • Save walf443/4152313 to your computer and use it in GitHub Desktop.
Save walf443/4152313 to your computer and use it in GitHub Desktop.
重複されるキーは無視される
<?php
$options = array('foo' => 'bar', 'baz' => 'boo');
$default = array('foo' => 'aaa');
$options += $default;
var_dump($options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment