Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は配列を持っています:
$countries = array( "af" => "Afghanistan", "ax" => "Åland Islands", "al" => "Albania", "dz" => "Algeria" );
およびいくつかの変数:
$as = "American Samoa"; $ad = "Andorra";
変数名を配列のキーとして保持しながら、変数を配列に結合するにはどうすればよいですか?
を使用compactして変数から配列を作成し、2 つの配列を単純に追加することができます。
compact
$countries += compact('as', 'ad');
実際に見てください。
foreach(array('as','ad') as $name){ $countries[$name] = $$name; }