如何在PHP中删除十进制?

I am currently echoing a number like this:

<?php echo $enterprise_platinum_price ?>

The problem is that the number normally has a decimal place such as 19.44 or 13.353

I need to display the full number but without the decimal point or any of the numbers behind it. I know that you can round to the full number in PHP but I don't ever want it to round up. If the only way to do this is with rounding, I need it to always round down...

Use the math floor function to round downward.

$a = floor(1.99); // $a = 1

You can also do it without rounding using number_format. There's many, many more ways, but I think the floor() option is the shortest for you.

$a = number_format(1505.99, 0, '', ''); // $a = 1505