Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
1  
bill: it's not homework - i'm actually just curious. :) – nickf Oct 27 '08 at 5:22
4  
well if it doesn't hurt (readability), why not do things in the most efficient way possible? – nickf Dec 2 '08 at 13:40
4  
If it doesn't hurt speed, why not do things in the most readable way possible? – Andy Lester Oct 21 '09 at 19:06
2  
@Andy, look at the benchmark tests below. The difference between (int) and intval() can be over 400%! – nickf Oct 21 '09 at 22:53
1  
fastest matters because speed matters for user experience. When you have a lot of operations going on, you want to have them FAST! – philipp Apr 17 '12 at 4:24
show 2 more comments

5 Answers

up vote 111 down vote accepted

I've just set up a quick benchmarking exercise:

Function             time to run 1 million iterations
--------------------------------------------
(int) "123":                0.55029
intval("123"):              1.0115  (183%)

(int) "0":                  0.42461
intval("0"):                0.95683 (225%)

(int) int:                  0.1502
intval(int):                0.65716 (438%)

(int) array("a", "b"):      0.91264
intval(array("a", "b")):    1.47681 (162%)

(int) "hello":              0.42208
intval("hello"):            0.93678 (222%)

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 (0 + $var)

| INPUT ($x)      |  (int) $x  |intval($x) |  0 + $x   |
|-----------------|------------|-----------|-----------|
| "123"           |   0.51541  |  0.96924  |  0.33828  |
| "0"             |   0.42723  |  0.97418  |  0.31353  |
| 123             |   0.15011  |  0.61690  |  0.15452  |
| array("a", "b") |   0.8893   |  1.45109  |  err!     |
| "hello"         |   0.42618  |  0.88803  |  0.1691   |
|-----------------|------------|-----------|-----------|

Addendum: I've just come across a slightly unexpected behaviour which you should be aware of when choosing one of these methods:

$x = "11";
(int) $x;      // int(11)
intval($x);    // int(11)
$x + 0;        // int(11)

$x = "0x11";
(int) $x;      // int(0)
intval($x);    // int(0)
$x + 0;        // int(17) !

$x = "011";
(int) $x;      // int(11)
intval($x);    // int(11)
$x + 0;        // int(11) (not 9)

Tested using PHP 5.3.1

share|improve this answer
6  
It's probably got something to do with the fact that intval() invokes a function call, whilst the cast is handled directly in the interpreter's expression calculator. This may also be the reason a co-ercion is even faster. – staticsan Oct 27 '08 at 6:09
1  
Your coercion example can be further simplified by using php's little known unary plus operator. $x + 0 -> +$x – Ozzy Apr 2 at 8:57

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.

share|improve this answer
4  
I wish I could +100 this response. – Kyle W. Cartmell Oct 13 '09 at 21:07
8  
Nah. You're not paying attention to the little performance taxes that really add up. PHP clearly has a lot of different ways to do the same thing. Benchmarks are a good way to figure out what to use and what not to use. – bobobobo Dec 22 '10 at 3:08
10  
Equally, you could say "Please don't worry about 'clarity' without having first done some sort of measurement that it matters." The OP didn't say why he needed more speed in this case, but that doesn't mean he doesn't have a reason. Clearly this is a pet peeve of yours, but both speed and clarity are important. – edanfalls Jan 23 '11 at 5:39
Good advice in most cases, but I would have put a "but not always" disclaimer on your answer if I were you. In some cases (e.g. high traffic websites) performance really counts. The rationale "the code is easier to read" won't stand up if your page takes twice as long to load. Perhaps this is answer is irrelevant for this particular answer, since (int)$s is just as easy to read as intval($s) anyway, IMO. – nbolton May 31 '12 at 1:36
1  
That's why it says "without having first done some sort of measurement that it matters." – Andy Lester Jun 1 '12 at 16:59

I personally feel casting is the prettiest.

$iSomeVar = (int) $sSomeOtherVar;

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.

share|improve this answer
3  
interestingly, arrays get cast to 1. go figure. – nickf Oct 27 '08 at 12:09

Run a test.

   string coerce:          7.42296099663
   string cast:            8.05654597282
   string fail coerce:     7.14159703255
   string fail cast:       7.87444186211

This was a test that ran each scenario 10,000,000 times. :-)

Co-ercion is 0 + "123"

Casting is (integer)"123"

I think Co-ercion is a tiny bit faster. Oh, and trying 0 + array('123') is a fatal error in PHP. You might want your code to check the type of the supplied value.

My test code is below.


function test_string_coerce($s) {
    return 0 + $s;
}

function test_string_cast($s) {
    return (integer)$s;
}

$iter = 10000000;

print "-- running each text $iter times.\n";

// string co-erce
$string_coerce = new Timer;
$string_coerce->Start();

print "String Coerce test\n";
for( $i = 0; $i < $iter ; $i++ ) {
    test_string_coerce('123');
}

$string_coerce->Stop();

// string cast
$string_cast = new Timer;
$string_cast->Start();

print "String Cast test\n";
for( $i = 0; $i < $iter ; $i++ ) {
    test_string_cast('123');
}

$string_cast->Stop();

// string co-erce fail.
$string_coerce_fail = new Timer;
$string_coerce_fail->Start();

print "String Coerce fail test\n";
for( $i = 0; $i < $iter ; $i++ ) {
    test_string_coerce('hello');
}

$string_coerce_fail->Stop();

// string cast fail
$string_cast_fail = new Timer;
$string_cast_fail->Start();

print "String Cast fail test\n";
for( $i = 0; $i < $iter ; $i++ ) {
    test_string_cast('hello');
}

$string_cast_fail->Stop();

// -----------------
print "\n";
print "string coerce:          ".$string_coerce->Elapsed()."\n";
print "string cast:            ".$string_cast->Elapsed()."\n";
print "string fail coerce:     ".$string_coerce_fail->Elapsed()."\n";
print "string fail cast:       ".$string_cast_fail->Elapsed()."\n";


class Timer {
    var $ticking = null;
    var $started_at = false;
    var $elapsed = 0;

    function Timer() {
        $this->ticking = null;
    }

    function Start() {
        $this->ticking = true;
        $this->started_at = microtime(TRUE);
    }

    function Stop() {
        if( $this->ticking )
            $this->elapsed = microtime(TRUE) - $this->started_at;
        $this->ticking = false;
    }

    function Elapsed() {
        switch( $this->ticking ) {
            case true: return "Still Running";
            case false: return $this->elapsed;
            case null: return "Not Started";
        }
    }
}
share|improve this answer
$int = settype("100", "integer"); //convert the numeric string to int
share|improve this answer
I believe some reference or proof is in order! – Mehran Oct 29 '12 at 14:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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