fork download
  1. <?php
  2.  
  3. var_dump(array_filter(array(4, 35, 0, 23, 0, 0, 5),function($x){return $x!=0;}));
Success #stdin #stdout 0.01s 82560KB
stdin
Standard input is empty
stdout
array(4) {
  [0]=>
  int(4)
  [1]=>
  int(35)
  [3]=>
  int(23)
  [6]=>
  int(5)
}