php 如何在连接中间使用条件语句

u3r8eeie  于 2022-12-17  发布在  PHP
关注(0)|答案(1)|浏览(129)

所以我有三个变量$blue_tooltip_icon,$red_tooltip_icon,和$gray_tooltip_icon。现在我想根据传递到WordPress短代码的属性输出一个特定的变量。所以如果输入“blue”,则输出$blue_tooltip_icon a如果输入“red”,则输出$red_tooltip_icon;如果输入“gray”,则输出$gray_tooltip_icon。
问题是如何去做,我尝试使用if语句,但发现这在连接中是不可能的。
这就是我试图通过shortcode输出的内容,工具提示图标根据shortcode属性输入的颜色而变化。

$message = '<span data-title="'.$atts['text'].'" class="tooltip">'.$content .$blue_tooltip_icon.'</span>';
frebpwbc

frebpwbc1#

我觉得这对你有帮助。

<?php
// Cleaner way

$blue_tooltip_icon = 'blue';
$red_tooltip_icon = 'red';
$green_tooltip_icon = 'green';

$atts['text'] = 'john';
$content = 'content';

$icons = [
    'blue' => $blue_tooltip_icon,
    'red' => $red_tooltip_icon,
    'green' => $green_tooltip_icon
];

$input = 'red';

//$message = '<span data-title="' . $atts['text'] . '" class="tooltip">' . $content . $icons[$input] . '</span>';

// Awkward style with ternary operator

$input = 'green';

$message = '<span data-title="' . $atts['text'] . '" class="tooltip">' . $content . (($input == "red") ? $red_tooltip_icon : (($input == "blue") ? $blue_tooltip_icon : $green_tooltip_icon)) . '</span>';

echo $message;

相关问题