if($abc) 和 if(empty($abc)) 和 if(!empty($abc))

function qin_tt_init_test(){
dpm('abc');
}

function qin_tt_init(){

$theme = qin_tt_init_test();
$messages = $theme;
if($messages){
dpm('abc');
}
if(!empty($messages)){
dpm('not empty');
}
if(empty($messages)){
dpm('empty');
}
原文地址:https://www.cnblogs.com/qinqiu/p/7216051.html