// If you've got a percentage value like this: $percentage = 50.05; // You can lob off the last two digits: $lasttwo = substr($percentage, -2); // And then see if that equals 00 if ($lasttwo == '00') { // intval returns an integer value $percentage = intval($percentage); } // echo it out, you'll see that if $lasttwo == 00, it returns an int echo $percentage;