Jak očistit řetězec od písmen a nechat jen čísla

Mám řetězec $text = "a4d2d1d1d" a potřebuju "vyházet" všechna písmena a nechat jen čísla. Je na to nějáké funkce.
Díky
trebas $text = ereg_replace("[^[[:digit:]]]", "", $text); nebo preg_match_all("/\d/", $text, $cisla); $text = explode("", $cisla); mozna to bude chtit odladit, netestoval jsem to, ale snad to pomuze :o)