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?
|
Is there any particular difference between intval and (int)? Example:
Is there any particular difference between above two lines of code?
| ||||
|
feedback
|
|
| |||||||||||
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) :
will get you :
| ||||
feedback
|
|
The thing that
If the base is 10 though,
| |||
|
feedback
|
|
One thing to note about the difference between
| |||||||||
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:
| |||||||
feedback
|
|
Just minimal function call overhead i think... im not sure as i always use ($type) to cast. | |||
|
feedback
|