3

在 style="style="color: ' 之前。$rx_event_colors 。'" 我想添加 $ima 变量。它只是一个在字符串中包含图像的变量。此外,如果您认为我会从添加

 if(!empty($ins_event))
            {
            echo "<tr><td>&nbsp; <a href='". matry::here(array('event_id'=>$ins_event['id'])) . "'" . 
            ( $ins_event['status'] == 2 ? ' style="color: ' . $rx_event_colors . '">Completed Insurance Event' : '>Active Insurance Event') . "</a></td></tr>";     

            }

我试过了:

? ' $ima, style="style="color: ' . $rx_event_colors . '"
                      style="style="color: ' . $ima, $rx_event_colors . '"
                      style="style="color: ' . ($ima), $rx_event_colors . '"
                      style="style="color: ' . ($ima), ($rx_event_colors) . '"

无济于事。

4

1 回答 1

3

我假设$ima是一个字符串。要连接字符串,请使用“。”

因此,在三元组的第一部分,如果您想添加$ima,只需执行以下操作:

' style="color: ' . $ima . $rx_event_colors . '">Completed Insurance Event'

但是,当您说“[$ima] 只是一个在字符串中带有图像的变量”时,我感到困惑。$ima是否包含图像本身的路径?如果是这样,它属于 img 标签的 SRC 属性,而不是 STYLE 属性。

更新:

因为$ima包含了整个 img 标签,所以它不属于样式属性。看:

' style="color: ' . $rx_event_colors . '">' . $ima . 'Completed Insurance Event'
于 2013-02-13T18:59:41.797 回答