Maison > développement back-end > tutoriel php > 在smarty中通过php脚本给smarty赋值

在smarty中通过php脚本给smarty赋值

WBOY
Libérer: 2016-06-23 13:15:04
original
978 Les gens l'ont consulté


一,php 脚本(test.php)

$smarty = new Sys_SmartyWork(CRON_HOME."/modifyInfo/tpl",CRON_HOME."/modifyInfo/tpl_c"); $hash = array();$info  = array();$info ['smarty'] = 'i am smarty!';$info ['php'] = 'i am php';$hash['arrInfo'] = $info;//进行模板变量替换 $smarty->assign($hash); //编译并显示位于./templates下的index.htm模板 $msg = $smarty->display('test.tpl'); 
Copier après la connexion

二,tpl 脚本('test.tpl') 


{{$arrInfo.smarty}}------------{{ php }}     //php给smarty变量赋值    $this->_tpl_vars['name'] = 'hello world!';    {{/php}}{{$name}}
Copier après la connexion

三,显示i am smarty!
------------
hello world!
Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal