我写了一个小脚本,每当某个值设置为0时,项目应该是粗体。但我感觉我在重复自己...有没有办法避免这个重复?
$output .= '<td>';
if ('0' == $value['treated']) {
$output .= '<b>';
}
$output .= $value['from'];
$output .= substr($value['message'], 20);
if ('0' == $value['treated']) {
$output .= '</b>';
}
$output .= '</td>';
答案 0 :(得分:5)
您可以设置一个班级吗?
$output .= '<td' . ('0' == $value['treated'] ? ' class="bold"' : '') . '>';
$output .= $value['from'];
$output .= substr($value['message'], 20);
$output .= '</td>';
您需要做的只是添加
.bold { font-weight: bold; }
到你的css文件
答案 1 :(得分:1)
$output = $value['from'] . substr($value['message'], 20);
if ('0' == $value['treated']) {
$output = "<b>$output</b>";
}
$output = "<td>$output</td>";
答案 2 :(得分:0)
我不知道这是否是您要找的,但您可以缓冲内容:
$output .= "<td>";
$buffer = $value['from'];
$buffer = substr($value['message'], 20);
$output .= ('0' == $value['treated'])
? "<b>" . $buffer . "</b>"
: $buffer;
编辑:我认为deceze是第一个:)
答案 3 :(得分:0)
这是一种可以实现的简单方法
$output .= '<td>';
$bs = '';
$be = '';
if ('0' == $value['treated']) {
$bs = '<b>';
$be = '</b>';
}
$output .= $bs;
$output .= $value['from'];
$output .= substr($value['message'], 20);
$output .= $be;
$output .= '</td>';
或
$output .= '<td';
if ('0' == $value['treated']) {
$output .=' style="font-weight:bold;"';
}
$output .= '>';
$output .= $value['from'];
$output .= substr($value['message'], 20);
$output .= '</td>';
答案 4 :(得分:0)
$dom = new DOMDocument;
$dom->loadHTML('<html/>');
$body = $dom->documentElement->appendChild($dom->createElement('body'));
for ( $i = 0; $i < 100; ++$i ) {
$div = $body->appendChild($dom->createElement('div'));
if ( rand() % 2 ) {
$div->setAttribute('class', 'highlighted');
$div->nodeValue = 'bold';
} else {
$div->nodeValue = 'normal';
}
}
die($dom->saveHTML());