php与smarty的难题

WBOY
Release: 2016-06-23 14:16:57
Original
894 people have browsed it

php脚本有变量: $name = 'fangxin';

smarty模版中:
{php}这里怎么引用脚本中的变量name呢?{/php}



下面的写法取不到值。
{php}
echo $name;
{/php}


回复讨论(解决方案)

首先你要 实例化smarty对象
$smarty = new Smarty;
然后要向view层传值
$smarty->assign("qianduanbianliangming",$name);
然后指定渲染的view层文件
$smarty->display("view_wenjian.html");

然后在view层文件里,将其显示出来
你要设定好smarty的左右边界  假设左边界是{{ 右边界是}}

那用 {{$qianduanbianliangming}}
就显示出来了你这个名字

首先你要 实例化smarty对象
$smarty = new Smarty;
然后要向view层传值
$smarty->assign("qianduanbianliangming",$name);
然后指定渲染的view层文件
$smarty->display("view_wenjian.html");

然后在view层文件里,将其显示出来
你要设定好smarty的左右边界  假设左边界是{{ 右边界是}}

那用 {{$qianduanbianliangming}}
就显示出来了你这个名字

这个我知道。

a.php<?php   $user = 'jame';?>a.tpl<div>{php}   $name = 这里我要调用a.php文件中的变量$user;   $str = $name . $password;{/php}</div>
Copy after login

建议你在php里面处理好了再传递给smarty

建议你在php里面处理好了再传递给smarty

看来只能换实现方法了.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template