这是我的代码的简化:
$html = "";
$posts = $sth->fetch(PDO::FETCH_ASSOC);
while ( $post = array_shift($posts) ){
if ( $post['deleted'] == true ){
/* jump to the four lines above (while)
* to ignore this post, becuase it is deleted
*/
}
$html .= '<div class="content">' . $content . '</div>';
}
正如我在代码中间评论的那样,我需要转到上面的行。有可能吗?
注意到在我上面提到的示例中,我可以将$html .= ...
行放入else {}
块。但实际上一切都比较复杂,做这样的事情是行不通的。我需要知道的就是像在PHP中跳起来一样?
答案 0 :(得分:3)
您可以使用continue
关键字帮助,因为我了解您的问题。
答案 1 :(得分:1)
为什么不这样做:
<progress ng-style={background-color: variable } ></progress>
编辑:您只需要继续声明..