fork download
  1. <?php
  2. $data=Array ( 0 => "steel mj23", 1 =>'test' ,2 =>'', 3 =>'' ,4 =>"", 5 =>"", 6 =>"", 7 =>"" );
  3. $result=Array();
  4. foreach($data as $key=>$value)
  5. {
  6. if(!empty($value))
  7. $result[]=$value;
  8.  
  9. }
  10. var_dump($result);
  11.  
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
array(2) {
  [0]=>
  string(10) "steel mj23"
  [1]=>
  string(4) "test"
}