Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个澳大利亚 PayPal 帐户,用于通过基本网站付款按钮在我的网站上处理付款。运送区域似乎仅适用于美国帐户。有什么方法可以为澳大利亚帐户的运输区域设置不同的价格。
就像是
Domestic (Australia) : $5 North and South America: $15 Europe and Africa: $20
干杯
凸轮
当您使用其 API 时, PayPalSHIPTOCOUNTRYCODE会在返回的数组中提供一个键。对于英国,代码是 GB。您可以使用它来确定您的运费:
SHIPTOCOUNTRYCODE
if ($return_data['SHIPTOCOUNTRYCODE'] == 'AUS') { $shipping_cost = 5; else if (something...) { ... }