我有一段输出销售数据的代码。有没有办法在输出的数据前面加上一个美元符号($)?
'meta'行是在前端渲染数字/数据的行。
$orders = dokan_get_order_report_data( array(
'data' => array(
'_order_total' => array(
'type' => 'meta',
'function' => 'SUM',
'name' => 'total_sales'
),
答案 0 :(得分:3)
您可以使用以下任何一种: -
1.使用php的money_format()
: -
echo money_format('%(#10n', $number) . "\n";
// ($ 1,234.57)
参考: - http://php.net/manual/en/function.money-format.php
2.使用货币的html代码并将其与您的号码连接。
参考: - http://character-code.com/currency-html-codes.php
3.Direct连接$
与您的数字值: -
<?php
$numbers = 10;
echo '$'.$numbers;
?>