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);
設定ファイル
のデータを読み込み、テンプレートに割り当てます。
これは、テンプレート関数
{config_load}
とまったく同じ働きをします。
Smarty 2.4.0以降では、割り当てられたテンプレート変数は
fetch()
および display()
の実行前後を通じて保持されます。
config_load()
から読み込まれた設定ファイルの変数は、
常にグローバルスコープです。設定ファイルは
高速に実行するためにコンパイルされます。その際には
$force_compile
や
$compile_check
の設定を尊重します。
Example 13.11. config_load()
<?php // 設定ファイルの変数を読み込み、割り当てます $smarty->config_load('my.conf'); // セクションを読み込みます $smarty->config_load('my.conf', 'foobar'); ?>
{config_load}
、
get_config_vars()
、
clear_config()
および
設定ファイルの変数
も参照してください。