如何从PHP中删除多维数组中具有空元素的行?
例如,来自:
1: a, b, c, d
2: d, _, b, a
3: a, b, _, _
4: d, c, b, a
5: _, b, c, d
6: d, c, b, a
到
1: a, b, c, d
4: d, c, b, a
6: d, c, b, a
谢谢!
答案 0 :(得分:7)
$arr = array(... your multi dimension array here ...);
foreach($arr as $idx => $row) {
if (preg_grep('/^$/', $row)) {
unset($arr[$idx]);
}
}
答案 1 :(得分:3)
使用此代码:
$source = array(
array('a', 'b', 'c', 'd'),
array('d', '_', 'b', 'a'),
array('a', 'b', '_', '_'),
array('d', 'c', 'b', 'a'),
array('_', 'b', 'c', 'd'),
array('d', 'c', 'b', 'a'),
);
$sourceCount = count($source);
for($i=0; $i<$sourceCount; $i++)
{
if(in_array("_", $source[$i])) unset($source[$i]);
}
答案 2 :(得分:1)
循环遍历多维数组并检查位置i
处的数组是否包含任何空元素。如果是,请致电unset($arr[i])
将其删除。
for($i=0,$size=sizeof($arr); $i < $size; $i++) {
if( in_array( "", $arr[$i] ) )
unset( $arr[$i] );
}
答案 3 :(得分:1)
我会自己迭代一个foreach循环:
<?php
// Let's call our multidimensional array $md_array for this
foreach ($md_array as $key => $array)
{
$empty_flag = false;
foreach ($array as $key => $val)
{
if ($val == '')
{
$empty_flag = true;
}
}
if ($empty_flag == true)
{
unset($md_array[$key]);
}
}
?>
这几乎肯定是一种更有效的方式,所以任何拥有更好解决方案的人都可以随意让我和Alex知道。
答案 4 :(得分:1)
试试这个:
注意:$ arr是你的数组。
foreach ( $arr as $key => $line ) {
foreach ( $line as $item ) {
if ( empty( $item ) ) {
unset( $arr[$key] );
break;
}
}
}
干杯