How to print all session variables currently set?

后端 未结 7 2055
眼角桃花
眼角桃花 2020-12-12 18:56

Without having to call each session variable by name, is there a way to display the content of all the session variables currently set?

7条回答
  •  情深已故
    2020-12-12 19:18

    session_start();
    echo '
    ';var_dump($_SESSION);echo '
    '; // or echo '
    ';print_r($_SESSION);echo '
    ';

    NOTE: session_start(); line is must then only you will able to print the value $_SESSION

提交回复
热议问题