// Veri Integer ise:
$Sayi = 030;
echo decoct($Sayi);

// Veri String ise:
$Sayi = "030";
echo (int)$Sayi;
?>