dqouryz3595 2018-08-29 19:20
浏览 35
已采纳

PHP / CSS:未加载我的会话变量

I'm trying to load parameters with php(stored in my database) to update my css. After login, I start a session and load css in my header:

<head>      
<?PHP 
    define('THEME',  $_SESSION["theme"]);   
?>      
<link type="text/css" rel="stylesheet" href="./public_html/css/style.php" />
</head>

When I try to access test in style.php it doesn't work:

<?php
    header("Content-type: text/css; charset: UTF-8");
    switch(constant(THEME)){ something...}
?>

What am I doing wrong? Why can't I access my variable?

  • 写回答

3条回答 默认 最新

  • dsf1222 2018-08-30 05:56
    关注

    New Answer

    PHP Constants need to be generated when the page/script is generated and will only last for that script execution.

    IF you want constants (As here) which last over multiple script/page loads of your website you need to use $_SESSION (or $_COOKIE ) values to carry the variable from page to page.

    Thus:

    As you set your constant here:

    <?PHP 
        define('THEME',  $_SESSION["theme"]);   
    ?> 
    

    Using a $_SESSION value; simply ignore the constant in your style.php page and use the session variable.

    Be sure to run session_start(); at the top of every script you want to read or write season data.

    thus:

    • style.php:

      <?php
          session_start(); //IMPORTANT! 
          header("Content-type: text/css; charset: UTF-8");
          switch($_SESSION["theme"]){ 
             case "a":
                ....
                break;
             case "b":
                ...
                etc.
             }
      ?>
      <html>
           ....
      

    Old Answer

    Based on this answer you can do:

    switch (constant("__TEST__")){
         case "Ok":
            print "this constant is ".__TEST__;
            break;
    
         ...
    }
    

    Please also note that double underscore constants (_ _ WORD _ _) are generally reserved and using this style for custom constants is frowned upon.

    Debug note:
    Do NOT print any PHP output before your header(...) statement. The header() MUST come before anything is output to the browser.

    展开全部

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部