Zend - The PHP Company




Arrays

Add Code


Empty Value Remover  

Type: code fragment
Added by: HuzursuZ
Entered: 22/10/2002
Last modified: 31/10/2001
Rating: - (fewer than 3 votes)
Views: 4381
Remoeves empty values of array...


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


Usage Example


<?
$file_info_array 
explode(" "$deger);
file_info_array array_unique($file_info_array);
$file_info_array rm_empty_value($file_info_array);

print_r($file_info_array);
?>


Rate This Script





Search



This Category All Categories