1

我有一个数字索引的字符串数组。另一个数组包含第一个数组的一组索引。如果第一个数组元素的索引在第二个数组中,我想删除第一个数组中的所有元素。我怎样才能在php中做到这一点?它有什么功能吗?

4

1 回答 1

3
$strings = array('foo', 'bar', 'baz');
$indexes = array(1, 2);
$strings = array_diff_key($strings, array_flip($indexes));
于 2012-04-09T06:56:37.030 回答