Hello,
Was reading this tutorial on the INTVAL():
https://www.w3schools.com/php/phptryit.asp?filename=tryphp_func_var_intval
How is this an INT ?
$e = array("red", "green", "blue");
echo intval($e) . "<br>";
And, when to use int() function and when to use INTVAL() function and when not to use them ? I am confused!