Difference between session_register and $_SESSION[]

前端 未结 2 1038
走了就别回头了
走了就别回头了 2021-01-25 07:27

What is the difference between session_register() and $_SESSION array ?

2条回答
  •  不要未来只要你来
    2021-01-25 08:06

    From the manual page for session_register:

    This function has been DEPRECATED as of PHP 5.3.0. Relying on this feature is highly discouraged.

    There are differences (e.g., session_register accepts names of global variables, automatically starts the session, etc), but I think a sufficient answer is "don't use session_register" unless you really want to know the list of caveats for educational purposes.

    Just to elaborate on one point that makes session_register bad: it relies on global variables (and register_globals).

提交回复
热议问题