if (!function_exists('diy_number_format')) {
/**
* 將價格格式還原為普通價格
*/
function diy_number_format($price = '')
{
$price = str_replace(',', '', $price);
$price = preg_replace('/^(\d+)\.00/i', '${1}', $price);
return $price;
}
}
如圖:
2、編輯產(chǎn)品詳情頁 template\pc\view_product.htm,對價格標(biāo)簽按圖處理
¥{$eyou.field.users_price|diy_number_format=###}
