Pegar Porcentagem de um Valor PHP

function porcentagem_nx ( $parcial, $total ) {
    return ( $parcial * 100 ) / $total;
}
Tiago F2