Is there any particular difference between intval and (int)?

Example:

$product_id = intval($_GET['pid']);
$product_id = (int) $_GET['pid'];

Is there any particular difference between above two lines of code?

link|improve this question

feedback

6 Answers

up vote 23 down vote accepted

intval() can be passed a base from which to convert. (int) cannot.

int intval( mixed $var  [, int $base = 10  ] )
link|improve this answer
1  
(int) is faster than intval(), according to wiki.phpbb.com/Best_Practices:PHP – moose Sep 1 '11 at 11:33
As I noted below earlier today, the base conversion does not work as expected if the argument is an int or float. – t-dub Oct 20 '11 at 4:23
@moose that page states $i++ is incorrect in red. But it should be slower!! – shiplu.mokadd.im Feb 26 at 1:09
I never spoke of $i++. What do you mean? When you say "But it should be slower!!" what do you compare? – moose Feb 26 at 16:51
feedback

I think there is at least one difference : with intval, you can specify which base should be used as a second parameter (base 10 by default) :

var_dump((int)"0123", intval("0123"), intval("0123", 8));

will get you :

int 123
int 123
int 83
link|improve this answer
I find it incredibly amusing that one can convert the base 17 number "g" into decimal: intval("2g", 17) = 50 = 2*17 + 16 – JSchaefer Oct 6 '11 at 19:10
feedback

The thing that intval does that a simple cast doesn't is base conversion:

int intval ( mixed $var [, int $base = 10 ] )

If the base is 10 though, intval should be the same as a cast (unless you're going to be nitpicky and mention that one makes a function call while the other doesn't). As noted on the man page:

The common rules of integer casting apply.

link|improve this answer
Gotta love that man page ;) – AVProgrammer Dec 2 '11 at 17:38
feedback

One thing to note about the difference between (int) and intval(): intval() treats variables which are already ints and floats as needing no conversion, regardless of the base argument (as of PHP 5.3.5 at least). This behavior isn't the most obvious, as noted in the comments on the PHP doc page and shamelessly reiterated here:

$test_int    = 12;
$test_string = "12";
$test_float  = 12.8;

echo (int) $test_int;         // 12
echo (int) $test_string;      // 12
echo (int) $test_float;       // 12

echo intval($test_int, 8);    // 12 <-- WOAH!
echo intval($test_string, 8); // 10
echo intval($test_float, 8)   // 12 <-- HUH?
link|improve this answer
The doc does say The base parameter has no effect unless the var parameter is a string. Then again the page was apparently updated four days ago, so perhaps that's what was added. – Lightness Races in Orbit Feb 7 at 11:38
Prominently documented or not, the behavior is a little surprising given the fact that the function theoretically can do base conversion. It definitely tripped me up before, but perhaps I just need to RTFM a bit more carefully :) – t-dub Feb 10 at 17:07
Oh it's certainly surprising behaviour. – Lightness Races in Orbit Feb 10 at 18:06
feedback

Amber is right and if I may add a useful information type casting (adding a "(int)" before your expression ) is 300 to 600% faster than intval. So if your purpose is not to dealing with other bases than decimal, I recommend using: (int) $something

link|improve this answer
2  
Something you might find interesting: programmers.stackexchange.com/questions/99445/… – Gerry Aug 18 '11 at 16:17
Agreed, still a +1 for performance numbers. – Zsub Aug 19 '11 at 11:14
feedback

Just minimal function call overhead i think... im not sure as i always use ($type) to cast.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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