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番目の配列にある場合、最初の配列のすべての要素を削除したい。どうすればphpでそれを行うことができますか? そのための機能はありますか?
$strings = array('foo', 'bar', 'baz'); $indexes = array(1, 2); $strings = array_diff_key($strings, array_flip($indexes));