我可以使用$ string number_format行来标注我的小数吗?

时间:2012-05-05 14:42:40

标签: php string decimal superscript

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

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

我不是很聪明,但我从昨天开始尝试使用不同的方法,我发现搜索堆栈溢出。像."<sup>或只是"<sup>"以及.'<sup>'以及许多其他组合这样的东西,但没有任何作用。我要么得到一个错误,要么由于我在代码中引入错误而导致价格消失,因为正如我所说的那样,我并不是最流行的工具。

2 个答案:

答案 0 :(得分:-1)

您应该使用HTML格式:

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

它会产生类似 42 的东西。

答案 1 :(得分:-1)

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

<?
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

$十二万三千四百五十六 0.79

10 $