Tobias Kloth: Jede Ziffer ersetzen durch Bild

Beitrag lesen

Hallo Gero,

$zahl = 1234.99;
=> $zahl_bilder="<img src='1.gif'><img src='2.gif'> ......";
Wie mach' ich das?

mit einem einfachen str_replace() z.B.:

$von = array(1,2,3,4,5,6,7,8,9,0);  
$nach = array('<img src="1.gif" alt="1">', '<img src="2.gif" alt="2">', [...], '<img src="  
0\.gif" alt="0">');  
$zahl_bilder = str_replace($von, $nach, $zahl);

Grüße aus Nürnberg
Tobias