Advertisement
Guest User

Untitled

a guest
Feb 25th, 2014
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2.     foreach ($available_brands_array as $key => $value) {
  3.         if (!is_int($value) && !is_float($value) && !is_string($value)) {
  4.             echo "Key " . $key . " is not a string/number - it's a " . gettype($value) . ":";
  5.             print_r($value);
  6.         }
  7.     }
  8. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement