状態:未整理
閲覧数:4,420
投稿日:2010-06-23
更新日:2013-01-04
配列を足す
配列1
・1番目 … name … 名前
・2番目 … age … 年齢
配列2
・1番目 … name … 名前
・2番目 … tall … 身長
・3番目 … age … 年齢
▼結果
http://php.w4c.work/originalSample/diagram/Section14/operators12.php
配列1
・1番目 … name … 名前
・2番目 … age … 年齢
配列2
・1番目 … name … 名前
・2番目 … tall … 身長
・3番目 … age … 年齢
$data1 = array("name" => "○田○夫", "age" => 20);
$data2 = array("name" => "○木○郎", "tall" => 180, "age" => 30);
$data = $data1 + $data2;
print "<pre>";
var_dump($data);
print "</pre>";
▼結果
http://php.w4c.work/originalSample/diagram/Section14/operators12.php