其他分享
首页 > 其他分享> > Smarty 传递的参数

Smarty 传递的参数

作者:互联网

Smarty都能传递什么参数

普通变量  string bool int

数组  array

常量  define、const定义的

系统常量  等等

 

 

Smarty全局变量接收

    <!-- 接收GET传递的参数id -->
    {$smarty.get.id}    

php 页面中传递值,smarty在html中能接收到

http://localhost/Smartry/controller.php?id=33

常量

    {$smarty.const.CC}
<?php 
include './Vendor/Smarty.class.php';
$smart=new Smarty();
define("CC","中国制造");

$smart->display('my.html');

 

标签:const,常量,smarty,传递,参数,Smarty,php,id
来源: https://www.cnblogs.com/xiaowie/p/14355970.html