我想只打印那些非空的条目。
例如amv=video1
和vs=video2
和vidbull
为空,vl
为空。要仅打印amv和vs,如果vidbull和vl不为空,它们也应自动打印。
检查我的代码的这张图片:
答案 0 :(得分:1)
if($amv != NULL){
echo ''; //You have to print
}else if($vs != NULL){
echo ''; //You have to print
}else if($vidbull != NULL){
echo ''; //You have to print
}else if($vl != NULL){
echo ''; //You have to print
}