Using PHP, what's the fastest way to convert a string like this: "123" to an integer?
Why is that particular method the fastest? What happens if it gets unexpected input, such as "hello" or an array?
|
Using PHP, what's the fastest way to convert a string like this: Why is that particular method the fastest? What happens if it gets unexpected input, such as |
||||
| show 2 more comments |
|
I've just set up a quick benchmarking exercise:
On average, calling intval() is two and a half times slower, and the difference is the greatest if your input already is an integer. I'd be interested to know why though. Update: I've run the tests again, this time with coercion
Addendum: I've just come across a slightly unexpected behaviour which you should be aware of when choosing one of these methods:
Tested using PHP 5.3.1 |
|||||||||
|
|
Please don't worry about "fastest" without having first done some sort of measurement that it matters. Rather than worrying about fastest, think about which way is clearest. |
|||||||||||||||||||
|
|
I personally feel casting is the prettiest.
Should a string like 'Hello' be sent, it will be cast to integer 0. For a string such as '22 years old', it will be cast to integer 22. Anything it can't parse to a number becomes 0. If you really do NEED the speed, I guess the other suggestions here are correct in assuming that coercion is the fastest. |
|||||
|
|
Run a test.
This was a test that ran each scenario 10,000,000 times. :-) Co-ercion is Casting is I think Co-ercion is a tiny bit faster. Oh, and trying My test code is below.
|
|||
|
|
|
|||
|
|
(int)andintval()can be over 400%! – nickf Oct 21 '09 at 22:53