Download! Contributed Code
Is Smarty right for me? Why use it? Crash Course Preface from docs Summary from docs Testimonials
Quick Install Documentation Sample Application Discussion Forums Internet Relay Chat Mailing Lists Smarty Wiki FAQ (from wiki) Other Resources
AOE media TYPO3 Web Hosting @ReviewItOnline Cheap Hosting @HostsVault
www.php.net www.phpinsider.com
Vote for Smarty!
Feel free to put in your rating or review of Smarty at HotScripts.com
Smarty Icon
You may only use the Smarty logo according to the trademark notice
Tell us about it!
Got some news for the front page? New articles, weblog discussions, public talks, etc? Let us know!
設定ファイル のデータを読み込み、テンプレートに割り当てます。 これは、テンプレート関数 {config_load} とまったく同じ働きをします。
テクニカルノート: Smarty 2.4.0以降では、割り当てられたテンプレート変数は fetch() および display() の実行前後を通じて保持されます。 config_load() から読み込まれた設定ファイルの変数は、 常にグローバルスコープです。設定ファイルは 高速に実行するためにコンパイルされます。その際には $force_compile や $compile_check の設定を尊重します。
例 13-1. config_load()
<?php// 設定ファイルの変数を読み込み、割り当てます$smarty->config_load('my.conf');// セクションを読み込みます$smarty->config_load('my.conf', 'foobar');?>
{config_load}、 get_config_vars()、 clear_config() および 設定ファイルの変数 も参照してください。