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.
2つの配列と計算を組み合わせた新しい配列が必要です
$array1 = array(2,5,7,1); $array2 = array(1,3,2,5);
結果配列は出力する必要があります
$array3 = array(3,8,9,6);
これはphpで可能ですか?array_merge関数が2つの配列を結合することは知っていますが、計算後に結合する方法
ノート :
これはC#で可能ですが、phpでもできるか知りたいです