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:
Smartyが必要とするプラグインを置くディレクトリです。デフォルトは
SMARTY_DIR
直下の plugins/
です。
相対パスが指定された場合は、まず最初に
SMARTY_DIR
直下を見ます。そこで見つからなかった場合は、
次にカレントディレクトリ、PHPのinclude_pathの順で見ていきます。
$plugins_dir
がディレクトリ名の配列であった場合、Smarty
は各プラグインディレクトリを
与えられた順に 検索します。
パフォーマンスを確保するため、$plugins_dir
には PHP のインクルードパスを使用しないでください。絶対パスを使用するか、
SMARTY_DIR
あるいはカレントディレクトリからの相対パスを使用してください。
Example 12.5. 複数の $plugins_dir
<?php $smarty->plugins_dir = array( 'plugins', // デフォルトは SMARTY_DIR の配下 '/path/to/shared/plugins', '../../includes/my/plugins' ); ?>