2017-01-20 115 views
0

我正在使用此WooCommerce功能woocommerce_price($product->get_price_excluding_tax()); 以顯示價格無稅。無稅產品價格計算

但我想這個價位之前做出一些計算,例如,分才 ...

隨着echo woocommerce_price($product->get_price_excluding_tax()); 它顯示與貨幣的價格,例如€13.80。所以,我從字符串使用此代碼刪除€符號:

$taxed_price = woocommerce_price($product->get_price_excluding_tax()); 
$taxed_price = str_replace("€","",$taxed_price); 
echo $taxed_price = str_replace('"', "", $taxed_price); 
echo $excl_tax_price = $taxed_price/2; 

但我對$taxed_price/2不起作用的計算,它沒有得到分成。

任何人都可以幫助我嗎?

謝謝。

回答

相關問題