<?php

function removeCaracteres($str){

	return str_replace(array(".", "-", "/", "(", ")"), "", $str);

}

$cpfBd="111.222.333-44";

echo removeCaracteres($cpfBd);

echo"\n";

$celularBd="(21)9876-5432";

echo removeCaracteres($celularBd);