I want to get total price of cart in my woocommerce plugin.
I want to get it as a float number like so: 21.00 but I don't know how to get it. My code outputs weird results, this is my exact code:
$total = $woocommerce->cart->get_total();
$total_a = WC()->cart->get_total();
$total1 = $woocommerce->cart->get_total_ex_tax();
$total1_a = WC()->cart->get_total_ex_tax();
$total2 = $woocommerce->cart->get_cart_total();
$total2_a = WC()->cart->get_cart_total();
outputs:
0,00 €
0,00 €
0,00 €
0,00 €
21,00 €
21,00 €
and if I convert from string to float the result is of course 0.00.
Any help how to get cart total in the form of float number ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…