我有一小段代码
<?php
foreach ($options['attributes_info'] as $attribute) :
?>
<?php
echo '<br/> ' .
$this->getPdfHelper()->fixEncoding(
$attribute['label'] . ': ' . $attribute['value']
)
?>
<?php
endforeach;
?>
如何加粗(HTML标记<b>
)被回复的'value'
?
答案 0 :(得分:5)
答案 1 :(得分:5)
<?php foreach ($options['attributes_info'] as $attribute) : ?>
<?= $this->getPdfHelper()->fixEncoding($attribute['label']) ?> : <b><?= $this->getPdfHelper($attribute['value']) ?></b>
<?php endforeach; ?>
答案 2 :(得分:2)
您可以使用标记围绕它:
'<b>' . $attribute['value'] . '</b>'