Skip to content

Instantly share code, notes, and snippets.

@ephrin
Created May 22, 2013 10:11
Show Gist options
  • Save ephrin/5626548 to your computer and use it in GitHub Desktop.
Save ephrin/5626548 to your computer and use it in GitHub Desktop.
Test of Test
$array = array('a'=>1,'b'=>2,'c'=>10,'d'=>false,'f'=>6);
$array = new ArrayHelper($array);
$array->some(function($key, $value, ArrayHelperInterface $array){
return $value && is_string($key) && count($array)>$value;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment