typecho判断 “getdescription(); ?>” 值是否为空
typecho 中判断上述值是否为空的方法非常简单,可以使用三元表达式:
<?php echo $this->getdescription() ? 1 : 2 ?>
如果 $this->getdescription() 的值不为空,则输出 1;否则输出 2。
例如:
$description = ''; // 假设 $description 为空值 echo $description ? 1 : 2; // 输出 2
$description = 'Typecho'; // 假设 $description 不为空 echo $description ? 1 : 2; // 输出 1