Ver original<?phpfunction replace($what){ #O una class como sea mejor!$txt = str_replace("0"," cero ",$what);$txt = str_replace("1"," uno ",$what);$txt = str_replace("2"," dos ",$what);$txt = str_replace("3"," tres ",$what);$txt = str_replace("4"," cuatro ",$what);$txt = str_replace("5"," cinco ",$what);$txt = str_replace("6"," seis ",$what);$txt = str_replace("7"," siete ",$what);$txt = str_replace("8"," ocho ",$what);$txt = str_replace("9"," nueve ",$what);return $txt;}echo replace("010123-4");?>