phpbar.de logo

Mailinglisten-Archive

[php] eigenes kleines template

[php] eigenes kleines template

Andreas Heigl a.heigl at wdv.de
Mit Okt 5 14:09:54 CEST 2005


Und um ganz sicher zu gehen:

$template = file_get_contents ( 'path/to/your/template' );
preg_match_all ('/{(\.+?)}/', $template, $array, PREG_SET_ORDER );
foreach ( $array AS $key )
{
    if ( array_key_exists ( $key[1], $yourValueArray ) )
    {
        $template = str_replace (
'{'.$key[0].'}',$yourValueArray[$key[0]],$template );
    } else
    {
        $template = str_replace ( '{'.$key[0].'}', '', $template );
    }
}    

grüße
 
andreas

-- 

wdv Medien & Kommunikation GmbH & Co. OHG
Mediendatenverarbeitung
Andreas Heigl
Siemensstrasse 6
61352 Bad Homburg
Germany
Telefon +49-(0)6172-670-185
Telefax +49-(0)6172-670-181
www.wdv.de



php::bar PHP Wiki   -   Listenarchive