if 语句在串联中间?[已关闭]

2022-08-30 22:36:58

这不起作用吗?还是我只是做错了?尝试了它的多种变体,似乎找不到有关该主题的任何可靠信息。任何想法?

    $given_id = 1;
while ($row = mysql_fetch_array($sql))
{
    if ($i < 10){
    $display = '<a href="' . $row['info'] . '" onMouseOver="' . if($row['type']=="battle"){ . 'showB' . } else { . 'showA'() . "><div class="' . $row['type'] . "_alert" . '" style="float:left; margin-left:-22px;" id="' . $given_id . '"></div></a>';

答案 1

if 是一个自立的声明。这就像一个完整的陈述。因此,您不能在字符串的连接之间使用它。更好的解决方案是使用速记三元运算符

    (conditional expression)?(ouput if true):(output if false);

这也可用于字符串的串联。例:

    $i = 1 ;
    $result = 'The given number is'.($i > 1 ? 'greater than one': 'less than one').'. So this is how we cuse ternary inside concatenation of strings';

您还可以使用嵌套的三元运算符:

    $i = 0 ;
    $j = 1 ;
    $k = 2 ;
    $result = 'Greater One is'. $i > $j ? ( $i > $k ? 'i' : 'k' ) : ( $j > $k ? 'j' :'k' ).'.';

答案 2

if..else是一个语句,不能在表达式中使用。你想要的是“三元”运算符:http://php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary?:


推荐