What is the maximum value an INT 10 can hold in PHP?

In PHP, the maximum value an INT 10 can hold is 2147483647. This is because INT data type in PHP is a signed integer with a size of 4 bytes, which allows it to store values within the range of -2147483648 to 2147483647. If a value greater than 2147483647 is assigned to an INT 10 variable, it will result in an overflow and the value will wrap around to the minimum value of -2147483648.

$int10_max_value = 2147483647;
echo $int10_max_value;