0

我正在尝试向我的 wordpress 项目添加自定义付款方式。在我的 process_payment 函数中的插件中,我使用此代码来获取购物车总金额。

$cart_tot=$woocommerce->cart->get_cart_total();

这个输出在mysql上的总数如下。

<span class="amount">&pound;250</span>

但我只想获得整数值。这可能吗?如果是这样怎么做?

4

2 回答 2

2
$woocommerce->cart->cart_contents_total
于 2013-10-06T14:31:12.627 回答
0

利用

  global $woocommerce;

然后你可以得到内容

  $woocommerce->cart->cart_contents_total
于 2016-03-14T08:31:59.770 回答