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 = (2, 3, 4); array2 = (1, 2, 3, 4, 5);
値array1がarray2に見つからない、2番目の配列の値を取得したいので、以下はarray3であると結論付けることができます。
array3 = (1, 5);
アレイの差分
$array3 = array_diff($array2, $array1);
$array3 = array_diff($array1, $array2);