如何在smarty模板语言中使用php代码
程序员文章站
2022-04-13 21:06:04
...
这篇文章主要介绍了关于 如何在smarty模板语言中使用php代码,有着一定的参考价值,现在分享给大家,有需要的朋友可以参考一下
借助于两个smarty内建函数。
1. inluce_php 函数用于在模板中包含 php 脚本, 如果设置了安全模式,被包含的脚本必须位于 $trusted_dir 路径下. include_php 函数必须设置 file 属性,该属性指明被包含 php 文件的路径,可以是 $trusted_dir 的相对路径,也可以是绝对路径。
例如:
{include_php file="test.php"}
实例:
load_nav.php ------------- <?php // load in variables from a mysql db and assign them to the template // 从mysql数据库中取得数据,将数据赋给模板变量 require_once("MySQL.class.php"); $sql = new MySQL; $sql->query("select * from site_nav_sections order by name",SQL_ALL); $this->assign('sections',$sql->record); ?> index.tpl --------- {* absolute path, or relative to $trusted_dir *} {* 绝对路径或 $trusted_dir 的相对路径 *} {include_php file="/path/to/load_nav.php"} {foreach item="curr_section" from=$sections} <a href="{$curr_section.url}">{$curr_section.name}</a><br> {/foreach}
2. php 标签允许在模板中直接嵌入 php 脚本,是否处理这些语句取决于$php_handling的设置. 该语句通常不需要使用,当然如果你非常了解此特性或认为必须要用,也可以使用。
例如:
{php}
echo "这个是php内建函数的作用";
{/php}
实例:
{php} // including a php script directly // from the template. include("/path/to/display_weather.php"); {/php}
相关推荐:
以上就是如何在smarty模板语言中使用php代码的详细内容,更多请关注其它相关文章!
推荐阅读
-
Smarty模板中嵌入PHP代码老是报错
-
thinkphp3.2Php代码和标签在模板文件中的混合使用
-
如何在smarty模板中执行php代码_PHP教程
-
smarty模板引擎中内建函数if、elseif和else的使用方法_PHP
-
php smarty模版引擎中变量操作符及使用方法_php模板
-
PHP 中使用 Smarty 之二:配置文件在模板变量中的使用
-
PHP模板引擎Smarty之配置文件在模板变量中的使用方法示例_php实例
-
PHP 中使用 Smarty 之二:配置文件在模板变量中的使用_PHP教程
-
在php中配置使用smarty模板引擎
-
smarty模板引擎中内建函数if、elseif和else的使用方法,smartyelseif_PHP教程