从配置文件获取的变量

配置文件获取的变量,可以通过 井号引用起来访问如#hashmarks#, 或者通过Smarty变量 [$smarty.config_](https://www.smarty.net/docs/zh_CN/language.variables.smarty.tpl#language.variables.smarty.config)来访问。 后者在使用其他属性或者是访问别的变量值时比较有用,如$smarty.config.$foo。


Example 4.7. 配置变量

配置文件foo.conf例子:

  1. pageTitle = "This is mine"
  2. bodyBgColor = '#eeeeee'
  3. tableBorderSize = 3
  4. tableBgColor = "#bbbbbb"
  5. rowBgColor = "#cccccc"
  6.  

示范使用#hash#方式的模板:

  1. {config_load file='foo.conf'}
  2. <html>
  3. <title>{#pageTitle#}</title>
  4. <body bgcolor="{#bodyBgColor#}">
  5. <table border="{#tableBorderSize#}" bgcolor="{#tableBgColor#}">
  6. <tr bgcolor="{#rowBgColor#}">
  7. <td>First</td>
  8. <td>Last</td>
  9. <td>Address</td>
  10. </tr>
  11. </table>
  12. </body>
  13. </html>
  14.  

示范使用$smarty.config方式的模板:

  1. {config_load file='foo.conf'}
  2. <html>
  3. <title>{$smarty.config.pageTitle}</title>
  4. <body bgcolor="{$smarty.config.bodyBgColor}">
  5. <table border="{$smarty.config.tableBorderSize}" bgcolor="{$smarty.config.tableBgColor}">
  6. <tr bgcolor="{$smarty.config.rowBgColor}">
  7. <td>First</td>
  8. <td>Last</td>
  9. <td>Address</td>
  10. </tr>
  11. </table>
  12. </body>
  13. </html>
  14.  

上面的例子都可以输出:

  1. <html>
  2. <title>This is mine</title>
  3. <body bgcolor="#eeeeee">
  4. <table border="3" bgcolor="#bbbbbb">
  5. <tr bgcolor="#cccccc">
  6. <td>First</td>
  7. <td>Last</td>
  8. <td>Address</td>
  9. </tr>
  10. </table>
  11. </body>
  12. </html>
  13.  

配置变量必须先载入配置文件才能使用。 这个过程会本文档的 {config_load}说明里面解释。

参见 变量$smarty保留变量

原文: https://www.smarty.net/docs/zh_CN/language.config.variables.tpl