编程语言
首页 > 编程语言> > php – ternary foreach嵌套在if / else中

php – ternary foreach嵌套在if / else中

作者:互联网

我想知道如何使用三元内或替代语法中的三元重写以下内容.

$tags = get_the_tags();
if (!empty($tags)) {
    foreach ($tags as $tag) {
        echo $tag->name . ', ';
    }    
} else {
    echo 'foobar';
}

解决方法:

没有像三元一样的东西.但是,您可以像这样制作条件语句三元组

echo empty($tags) ? 'foobar' :
implode(', ',array_map(create_function('$o', 'return $o->name;'),$tags)) ;

标签:ternary,php
来源: https://codeday.me/bug/20190824/1706205.html