gpt4 book ai didi

php - PHP 中的冒号运算符

转载 作者:可可西里 更新时间:2023-11-01 13:36:32 26 4
gpt4 key购买 nike

这是 wordpress 代码的一部分,我不明白:

if     ( is_404()            && $template = get_404_template()            ) :
elseif ( is_search() && $template = get_search_template() ) :
elseif ( is_tax() && $template = get_taxonomy_template() ) :
elseif ( is_front_page() && $template = get_front_page_template() ) :
elseif ( is_home() && $template = get_home_template() ) :
elseif ( is_attachment() && $template = get_attachment_template() ) :
remove_filter('the_content', 'prepend_attachment');
elseif ( is_single() && $template = get_single_template() ) :
elseif ( is_page() && $template = get_page_template() ) :
elseif ( is_category() && $template = get_category_template() ) :
elseif ( is_tag() && $template = get_tag_template() ) :
elseif ( is_author() && $template = get_author_template() ) :
elseif ( is_date() && $template = get_date_template() ) :
elseif ( is_archive() && $template = get_archive_template() ) :
elseif ( is_comments_popup() && $template = get_comments_popup_template() ) :
elseif ( is_paged() && $template = get_paged_template() ) :
else :
$template = get_index_template();
endif;

冒号可以代替 PHP 中的大括号。因此,如果我替换冒号,我会得到:

if     ( is_404()            && $template = get_404_template()            ) {
elseif ( is_search() && $template = get_search_template() ) {
elseif ( is_tax() && $template = get_taxonomy_template() ) {
...
}
}
}
else

对我来说没有意义,因为每个 elseif 都缺少它的开头 if。

最佳答案

雷吉,

colons in if/else statements in PHP : it's NOT about replacing braces but a PAIR of braces.

示例:

if ($a) : doThis();
elseif ($b) : doThat();
else : doTheOther();
endif;

会变成

if ($a) { doThis(); }
elseif ($b) { doThat(); }
else { doTheOther(); }

OR (因为它只是一个语句而不是语句 block )

if ($a) doThis();
elseif($b) doThat();
else doTheOther();

引用: Alternative Syntax for Control Structures


至于这段特定的代码:

if     ( is_404()            && $template = get_404_template()            ) :
elseif ( is_search() && $template = get_search_template() ) :
elseif ( is_tax() && $template = get_taxonomy_template() ) :

它转化为

if     ( is_404()            && $template = get_404_template()            )  
{ /* DO NOTHING */ }
elseif ( is_search() && $template = get_search_template() )
{ /* DO NOTHING */ }

提示: elseif 语句不包括其他 elseif 语句。 (比如 elseif ($a) { elseif($b) {} })

关于php - PHP 中的冒号运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10054345/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com