17

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

    $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>';
4

4 回答 4

52

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' ).'.';
于 2012-10-26T15:40:20.190 回答
8

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

于 2012-10-26T15:23:55.127 回答
4

使用使用三元运算符的简写 if 语句?:-

$display = 'start ' . (($row['type']=="battle")? 'showB' : 'showA') . ' end ';

请参阅http://php.net/manual/en/language.operators.comparison.php上的“三元运算符”

于 2012-10-26T15:24:20.660 回答
2

if是一个声明。不能将语句放在表达式中。

$str = 'foo';
if (cond)
{
  $str .= 'bar';
};
$str .= 'baz';
于 2012-10-26T15:24:32.053 回答