Advertisement
puggan

aray_filter_test

Aug 11th, 2011
217
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. <?php
  2.  
  3. function numbers_in_array($array)
  4. {
  5.    return array_filter($array, "is_numeric") ? FALSE : TRUE;
  6. }
  7.  
  8. $data = array(
  9.     "keepThis"   => array("x", "y", "z"),
  10.     "RemoveThis" => array("3", "2", "1"),
  11.     "keepThis2"  => array("x", "y", "z")
  12. );
  13.  
  14. $filtered_data = array_filter($data, "numbers_in_array");
  15.  
  16. print_r($filtered_data);
  17.  
  18. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement