bcmath module can help you
bcmod(bcdiv("0.7", "0.001"), "10"); // returns 0
in your code
$orderAmount = $_POST['orderAmount'];
$adUnitPrice = 0.001;
if(bcmod(bcdiv($orderAmount, $adUnitPrice), 10) == 0) {
$standardPayment = true;
} else {
$standardPayment = false;
}
or even
$standardPayment = (bcmod(bcdiv($orderAmount, $adUnitPrice), 10) == 0);
you can check on command line with php -m and look if has the module or write a file with the follow
<?php phpinfo(); ?>