php isset和empty方法的区别
2021-03-18 10:27
标签:fun span tle strong tool 不为 区别 技术 的区别 我总结了下面几点区别,直接上代码; empty方法: isset方法: php isset和empty方法的区别 标签:fun span tle strong tool 不为 区别 技术 的区别 原文地址:https://www.cnblogs.com/lyzaidxh/p/12772130.html
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(); //值不为空
function isset1(){
//变量存在,返回true
$cnword = ‘‘;
if(isset($cnword)){
echo ‘变量存在‘;
}else{
echo ‘变量不存在‘;
}
}
isset1(); //变量存在
function isset2(){
//变量不存在,返回false
if(isset($cnword)){
echo ‘变量存在‘;
}else{
echo ‘变量不存在‘;
}
}
isset2(); //变量不存在
下一篇:php 抽象类abstract
文章标题:php isset和empty方法的区别
文章链接:http://soscw.com/index.php/essay/65741.html