I must check big arrays to see if they are 100% filled with numeric values. The only way that comes to my mind is foreach and then is_numeric for every value, but is that the fastest way?

link|improve this question

80% accept rate
2  
Any solution to this problem will loop over the array values. Whether you need to do it in code or a function does that for you is another question, but in both cases there is a loop. So I guess the performance should be pretty much the same, regardless of what you do. – Joey Dec 13 '10 at 8:02
1  
What about validating the values before they get into the array ? – mmanco Dec 13 '10 at 8:11
It is not that simple because the values come into and go from the array in random ways and some of them can be null or false or "" , and then I must do calculations with them, and result of these calculations must be null if some of the data in the array is not numeric. – rsk82 Dec 13 '10 at 9:40
feedback

2 Answers

up vote 0 down vote accepted

The quickest way might be to just assume they're all numerals and continue on with your operation. If your operation fails later on, then you know something isn't a numeral. But if they are all actually numerals... you can't get much faster than O(0)!

link|improve this answer
But some non-numeric values will slip through because of weaktyping/autocasting. The assumption is not safe. – Umbrella Feb 11 at 4:57
feedback

assuming your array is one-dimensional and just made up of integers:

return ctype_digit(implode('',$array));
link|improve this answer
1  
Had to undo my vote, false and NULL values, which return false for is_numeric() are imploded as empty strings here, escaping ctype_digit(). – BoltClock Dec 13 '10 at 8:08
@BoltClock: OP assures the array is "100% filled with numeric values" – stillstanding Dec 13 '10 at 8:10
1  
I think implode operation is rather costly in time. – rsk82 Dec 13 '10 at 8:13
@user393087: if you can back up your claim that implode is expensive, your "i think" comment has no basis. real coders say "i checked". that's why benchmarking is a science. – stillstanding Dec 13 '10 at 9:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.