zoukankan      html  css  js  c++  java
  • Smarty保留变量信息

    对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>
  • 相关阅读:
    import()函数
    node-sass安装报错
    npm 安装扩展模块时,因缓存报错的问题汇总
    测试
    export default 和 export 区别
    正则
    物联网
    第十二次课堂总结
    第十二次作业
    作业10
  • 原文地址:https://www.cnblogs.com/healy/p/6907041.html
Copyright © 2011-2022 走看看