标签: php osclass
如何在osclass中获取没有货币代码的商品价格?我需要将此值发送给Paypal。
我希望函数只能获得10个数字。
答案 0 :(得分:1)
osc_item_price()是正确使用的功能,但您必须将返回的数字除以1000000.您可以使用以下函数执行此操作:
function getItemPrice() { return osc_item_price()/1000000; }