phpbar.de logo

Mailinglisten-Archive

[php] Zahlen formatieren

[php] Zahlen formatieren

Cyrill Schumacher webmasterbhs_(at)_bluewin.de
Sat, 30 Dec 2000 15:45:55 +0100


> also: ich suche ein script, das nach 3 zeichen von hinten ein' einfügt,
> z.b. 10000 => 10'000, 17056387 => 17'056'387

man könnte:

$za = preg_split("/[0-9]{3,3}/",$zahl);
for($i=count($za)-1;$i>0;$i--){
    printf("'%s",$za[$i]);
}

wobei ich mir nicht ganz sicher bin. sonst probier
number_format() - RTFM

ich




php::bar PHP Wiki   -   Listenarchive