php isset和empty方法的区别

2021-03-18 10:27

阅读:592

标签:fun   span   tle   strong   tool   不为   区别   技术   的区别   

我总结了下面几点区别,直接上代码;

empty方法:

  1. 变量不存在,返回true
  2. 变量存在,值为空,返回true
  3. 变量存在,值不为空,返回false
技术图片
function empty1(){
    //变量不存在,返回true
    if(empty($cnword)){
        echo ‘变量不存在‘;
    }else{
        echo ‘变量存在‘;
    }
}
empty1();   //变量不存在

function empty2(){
    //变量存在,值为空,返回true
    $cnword = ‘‘;
    if(empty($cnword)){
        echo ‘值为空‘;
    }else{
        echo ‘值不为空‘;
    }
}
empty2();   //值为空

function empty3(){
    //变量存在,值不为空,返回false
    $cnword = ‘123‘;
    if(empty($cnword)){
        echo ‘值为空‘;
    }else{
        echo ‘值不为空‘;
    }
}
empty3();   //值不为空
技术图片

 

isset方法:

  1. 变量存在,返回true
  2. 变量不存在,返回false
技术图片
function isset1(){
    //变量存在,返回true
    $cnword = ‘‘;
    if(isset($cnword)){
        echo ‘变量存在‘;
    }else{
        echo ‘变量不存在‘;
    }
}
isset1();   //变量存在

function isset2(){
    //变量不存在,返回false
    if(isset($cnword)){
        echo ‘变量存在‘;
    }else{
        echo ‘变量不存在‘;
    }
}
isset2();   //变量不存在

php isset和empty方法的区别

标签:fun   span   tle   strong   tool   不为   区别   技术   的区别   

原文地址:https://www.cnblogs.com/lyzaidxh/p/12772130.html


评论


亲,登录后才可以留言!