String Template Resources

Smarty可使用string:eval:的资源类型, 来从一个字符串中获得模板内容。

Note

使用string:的资源,每个字符串都会生成一个编译文件。 Smarty无法检查一个字符串是否已修改,所以只能为每个独立的字符串都生成一个新的编译文件。 选择一个好的资源类型是很重要的,可避免你的磁盘塞满浪费的编译文件。

Example 16.5. 使用字符串资源

<?php
$smarty->assign('foo','value');
$template_string = 'display {$foo} here';
$smarty->display('string:'.$template_string); // 下次使用时编译
$smarty->display('eval:'.$template_string); // 每次都编译
?>

  

在模板内使用

{include file="string:$template_string"} {* 下次使用时编译 *}
{include file="eval:$template_string"} {* 每次都编译 *}


  

string:eval:的资源都可以通过 urlencode()base64_encode() 来进行编码。 通常情况下编码是不需要的,但当和扩展模板资源 一起使用的时候,那么就需要进行编码了。

Example 16.6. 使用编码后的字符串资源

 
 <?php
 $smarty->assign('foo','value');
 $template_string_urlencode = urlencode('display {$foo} here');
 $template_string_base64 = base64_encode('display {$foo} here');
 $smarty->display('eval:urlencode:'.$template_string_urlencode); // 将通过 urldecode() 解码
 $smarty->display('eval:base64:'.$template_string_base64); // 将通过 base64_decode() 解码
 ?>
 
   

在模板内使用

 
 {include file="string:urlencode:$template_string_urlencode"} {* 将通过 urldecode() 解码 *}
 {include file="eval:base64:$template_string_base64"} {* 将通过 base64_decode() 解码 *}