Cookie does not set

前端 未结 4 751
Happy的楠姐
Happy的楠姐 2021-01-21 23:16

I have a cookie that will not set on the remote server, works find locally. No error messages, var_dump gets me Null, echo is blank.



        
4条回答
  •  温柔的废话
    2021-01-22 00:05

    You can't read the value of a cookie until a new page request is made. This is because the value of cookie data is sent with the page request. So it isn't available for to access its value until after it is set and a new page request is made.

    Also, session_start() has no effect on cookies. They are two different things. (Sessions do typically use cookies to store the session ID but that is irrelevant).

提交回复
热议问题