将if / else嵌套在另一个if / else中

时间:2014-05-22 04:53:01

标签: php

有问题的代码是:

<?php }else{ ?>
<div class = 'reddit-image pull-left' style = 'width:180px'>
<img src = "<?php echo get_post_meta( $post->ID, 'wpedditimage', true ); ?>" width =     "180px" class="img-rounded">
</div>
<?php } ?>

如何在当前“else”中嵌套另一个if / else语句?

2 个答案:

答案 0 :(得分:0)

else {
       if() {
         // do your stuff
       }
       else {
         // do your stuff
       }
}

更多信息: - http://www.php.net/manual/en/control-structures.else.php

答案 1 :(得分:0)

那是......一个可以做到的好方法;但是,我可能采取这种方式(只是我个人的偏好):

<?php

echo "Thing one" . "Thing two" . "Thing three";

?>

确保不要混淆您的单引号和双引号!请注意,在您回到HTML以定义宽度和类之后,您忘记继续使用单引号而不是双引号。

从一个回应请求中回显多个事物......

.

请注意字符串之间的"class_weights="auto"

祝你好运!