What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
config_load
void config_load(string file,
string section);
Lädt die Konfigurationsdatei file
und weist die Daten dem
Template zu. Dies funktioniert identisch wie config_load.
Seit Smarty 2.4.0 bleiben Variablen während fetch() und display() Aufrufen erhalten. Variablen, die mit config_load() geladen werden sind immer global deklariert. Konfigurationsdateien werden für eine schnellere Ausgabe ebenfalls kompiliert, und halten sich an die force_compile und compile_check Konfiguration.
Example 13.11. config_load
<?php // variablen laden und zuweisen $smarty->config_load('my.conf'); // nur einen abschnitt laden $smarty->config_load('my.conf', 'foobar'); ?>