3

我想让以下字符串中的小数显示为上标:

$string .= number_format(round($value, (int)$decimal_place), (int)$decimal_place, $decimal_point, $thousand_point);

我不是很聪明,但从昨天开始我一直在尝试使用不同的方法,我发现搜索堆栈溢出。像."<sup>or just"<sup>"和also.'<sup>'等许多其他组合,但没有任何效果。由于我在代码中引入的错误,我要么收到错误,要么价格消失,因为正如我所说,我不是棚子里最锋利的工具。

4

2 回答 2

0

请查看我下面的代码,这将格式化您的字符串,然后使用正则表达式为小数上标

<?
function superscript_value($value, $prefix = '$') {
    $decimal_place = 2;
    $decimal_point = '.';
    $thousand_point = ',';

    if(round($value, 0) == $value)
        return $prefix . $value;
    else
        return $prefix . preg_replace("/\.(\d*)/", "<sup>.$1</sup>", number_format($value, (int)$decimal_place, $decimal_point, $thousand_point));
}

echo superscript_value(123456.789, '$') . "\n";
// $123,456<sup>.79</sup>
echo superscript_value(10.00, '$') . "\n";
// $10

123,456 .79美元

10 美元

于 2012-05-05T14:51:13.167 回答
-1

您应该为此使用 HTML 格式:

$i = 42;
$string .= "<sup>".$i."</sup>";

它会产生类似42的东西。

于 2012-05-05T14:46:19.093 回答