PHP bug ?

<?php
$price = 125.99;
$dec = ($price - intval($price)) * 100;
$dec = (int) $dec;
echo $dec; // WTF?!