码迷,mamicode.com
首页 > 其他好文 > 详细

Smarty保留变量信息

时间:2017-05-26 11:00:41      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:set   compile   结构   new   http   isp   ima   版本   efi   

对php里边的超级全局数组变量信息的使用

例如:$_GET、$_POST、$_SESSION、$_COOKIE、$_REQUEST、$_SERVER、$_ENV、$GLOBALS、$_FILES、常量信息

{$smarty.get.xxx}

{$smarty.post.xxx}

{$smarty.session.xxx}

{$smarty.cookies.xxx}

{$smarty.request.xxx}

{$smarty.server.xxx}

{$smarty.env.xxx}

 

目录结构

技术分享

 

代码示例:

1.php

<?php
define("HOST","0911");
include "./libs/Smarty.class.php";

$smarty = new Smarty;
$smarty -> setTemplateDir("./View/");
$smarty -> setCompileDir("./View_c/");

$smarty -> assign(‘name‘, $_GET[‘name‘]);

$smarty -> display(‘01.html‘);

/view/1.html

  <body>

        <h2>保留变量使用</h2>
        <div><?php echo $_GET[‘name‘]; ?></div>
        <div>{$name}</div>
        <div>名字:{$smarty.get.name}</div>
        <div>年龄:{$smarty.get.age}</div>
        <div>主机名:{$smarty.const.HOST}</div>
        <div>时间戳:{$smarty.now}</div>
        <div>当前模板名称:{$smarty.template}</div>
        <div>模板目录名称:{$smarty.current_dir}</div>
        <div>模板引擎版本:{$smarty.version}</div>
        <div>模板引擎定界符:{$smarty.ldelim}--{$smarty.rdelim}</div>

    </body>

 

Smarty保留变量信息

标签:set   compile   结构   new   http   isp   ima   版本   efi   

原文地址:http://www.cnblogs.com/healy/p/6907041.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!