Zend - The PHP Company




Arrays

Add Code


Remove Arrays Empty Values  

Type: code fragment
Added by: HuzursuZ
Entered: 23/10/2002
Last modified: 01/11/2001
Rating: - (fewer than 3 votes)
Views: 4636
Removes Empty Values Of Array :)


<?php
function rm_empty_values($array) {
    
$x 0;
    foreach (
$array as $key => $value) {
        if((
$value) || ($value == "0")) {
            
$array_temp[$x] = $value;
            
$x++;
        }
    }
    return 
$array_temp;
}
?>


Usage Example




Rate This Script





Search



This Category All Categories