PHP return 带小数分隔符的价格
PHP return price with decimal separator
能否请您帮助我了解如何自定义添加到 WordPress/Woocommerce 的以下代码的输出?我希望 return 值(常规价格和销售价格)在千位后用小数分隔符(点)分隔,例如“1.200”。
代码:
function sr_change_variable_price($price, $product){
$html_tag = '<span id="reg_price">%s</span><span id="sale_price">%s</span>';
if($product->is_type('variable') AND !is_product()){
$test = $product->get_variation_regular_price('min') . ' Ft' ;
$min = $product->get_variation_sale_price('min') . ' Ft';
return(sprintf($html_tag, $test, $min));
}elseif($product->is_type('variable') AND is_product()){
return('');
}else
{return $price; // other cases
}
}
add_filter('woocommerce_get_price_html', 'sr_change_variable_price', 10, 2);
非常感谢您的帮助
您只需使用 number_format 即可。
示例:
$price = number_format(1200, 0, '', '.');
echo $price; // outputs 1.200
能否请您帮助我了解如何自定义添加到 WordPress/Woocommerce 的以下代码的输出?我希望 return 值(常规价格和销售价格)在千位后用小数分隔符(点)分隔,例如“1.200”。
代码:
function sr_change_variable_price($price, $product){
$html_tag = '<span id="reg_price">%s</span><span id="sale_price">%s</span>';
if($product->is_type('variable') AND !is_product()){
$test = $product->get_variation_regular_price('min') . ' Ft' ;
$min = $product->get_variation_sale_price('min') . ' Ft';
return(sprintf($html_tag, $test, $min));
}elseif($product->is_type('variable') AND is_product()){
return('');
}else
{return $price; // other cases
}
}
add_filter('woocommerce_get_price_html', 'sr_change_variable_price', 10, 2);
非常感谢您的帮助
您只需使用 number_format 即可。
示例:
$price = number_format(1200, 0, '', '.');
echo $price; // outputs 1.200