You'd use preg_replace, and feed it a regular expression describing what you want to delete. Replace the hits with nothing.
<?
$string = 'abcde66666;<>//who am i, foo@bar.com ??';
$string = preg_replace('/[a-zA-Z0-9 ]/','',$string);
echo $string;
?>
In this case, the regex says 'anything that is NOT in the sets a through z, A through Z, 0 through 9.'
Result is
abcde66666who am i foobarcom