Home  >  Article  >  Backend Development  >  PHP 的session 为什么未附值判断是否为空出现警告解决方案

PHP 的session 为什么未附值判断是否为空出现警告解决方案

WBOY
WBOYOriginal
2016-06-13 13:45:58959browse

PHP 的session 为什么未附值判断是否为空出现警告
SESSION_START();
if($_SESSION['aa']==NULL){
echo "空";
}else{
echo "非空";
}

这样判断 是否可行的呢? 要附初始值吗? 但是我跳转到别的页面再回来的话附初始值就会被清空的了,请问有什么方法解决?

------解决方案--------------------
判断请用 isset 或者 empty
具体你是想判断这个变量是否存在还是判断内容是否为空?
跳转到别的页面再回来会清空?贴所有代码

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn