<?php

$valor = "331.223,33"; // valor em R$
$teste_milhar = str_replace(".","","$valor");
$teste_centena = str_replace(",",".","$teste_milhar");
echo $teste_centena;
?>