判断typecho描述值是否为空
typecho中使用getdescription(); ?>获取文章描述。如何判断这个值是否为空,实现为空输出2,不为空输出1呢?
解决方案
可以使用php的三元运算符直接判断:
<?php echo $this->getDescription() ? 1 : 2 ?>
其中: