What function can be used in PHP to remove the decimal part of a number?

To remove the decimal part of a number in PHP, you can use the `intval()` function. This function takes a number as input and returns the integer part of that number, effectively removing the decimal part.

$number = 10.75;
$integerNumber = intval($number);
echo $integerNumber; // Output: 10