-1

我正在尝试将 PHP 数组输出转换为一个数字 PHP 变量,以便我可以对其进行算术运算,然后将其全局存储以在购物车中使用。

这是生成和操作数组的代码:

<?php
function ups($dest_zip,$service,$weight,$length,$width,$height) {
$AccessLicenseNumber = 'XXXXXXXXXXXXX'; // Your license number
$UserId = 'XXXXXXXX'; // Username
$Password = 'XXXXXXXX'; // Password
$PostalCode = 'XXXXXX'; // Zipcode you are shipping FROM
$ShipperNumber = 'XXXXX'; // Your UPS shipper number

    $data ="<?xml version=\"1.0\"?>
    <AccessRequest xml:lang=\"en-US\">
        <AccessLicenseNumber>$AccessLicenseNumber</AccessLicenseNumber>
        <UserId>$UserId</UserId>
        <Password>$Password</Password>
    </AccessRequest>
    <?xml version=\"1.0\"?>
    <RatingServiceSelectionRequest xml:lang=\"en-US\">
        <Request>
            <TransactionReference>
                <CustomerContext>Bare Bones Rate Request</CustomerContext>
                <XpciVersion>1.0001</XpciVersion>
            </TransactionReference>
            <RequestAction>Rate</RequestAction>
            <RequestOption>Rate</RequestOption>
        </Request>
    <PickupType>
        <Code>01</Code>
    </PickupType>
    <Shipment>
        <Shipper>
            <Address>
                <PostalCode>$PostalCode</PostalCode>
                <CountryCode>US</CountryCode>
            </Address>
        <ShipperNumber>$ShipperNumber</ShipperNumber>
        </Shipper>
        <ShipTo>
            <Address>
                <PostalCode>$dest_zip</PostalCode>
                <CountryCode>US</CountryCode>
            <ResidentialAddressIndicator/>
            </Address>
        </ShipTo>
        <ShipFrom>
            <Address>
                <PostalCode>$PostalCode</PostalCode>
                <CountryCode>US</CountryCode>
            </Address>
        </ShipFrom>
        <Service>
            <Code>$service</Code>
        </Service>
        <Package>
            <PackagingType>
                <Code>02</Code>
            </PackagingType>
            <Dimensions>
                <UnitOfMeasurement>
                    <Code>IN</Code>
                </UnitOfMeasurement>
                <Length>$length</Length>
                <Width>$width</Width>
                <Height>$height</Height>
            </Dimensions>
            <PackageWeight>
                <UnitOfMeasurement>
                    <Code>LBS</Code>
                </UnitOfMeasurement>
                <Weight>$weight</Weight>
            </PackageWeight>
        </Package>
    </Shipment>
    </RatingServiceSelectionRequest>";
    $ch = curl_init("https://www.ups.com/ups.app/xml/Rate");
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch,CURLOPT_POST,1);
    curl_setopt($ch,CURLOPT_TIMEOUT, 60);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
    $result=curl_exec ($ch);        
   $upsout = (explode('USD', $result, 15));    
    $handling = $upsout[3];
   echo "<br><br>Shipping: $";
    echo $handling; 
   echo " USD<br><br>";       
   curl_close($ch);
   var_dump( $handling);
// print_r ($upsout);}?>

$handling 的输出始终是 00.00 或 000.00 格式的数字,当然,零是数字。我真的需要它才能在算术函数中工作并能够存储以用作数字。

我知道它不起作用,因为如果我这样做

$test = $handling *2;
echo $test;

我得到“0”作为输出,而不是 $handling 的两倍......

编辑:

如果我运行 var_dump(htmlentities($handling));

输出是:

字符串(222)“33.35”

如果我运行 var_dump($handling);

输出是

字符串(168)“33.35”

所以....我需要找到一种方法来解析这个数组条目中的垃圾,这样我就可以代数地操纵它。

4

3 回答 3

1

我打赌你的字符串中有 HTML 标签,这就是你得到这个的原因var_dump()

string(168) "33.35"

第一个数字表示您的字符串长度为 168 个字符,而33.35占用 5 个字符。所以那里还有其他东西,不仅仅是一个数字。

其中一个解决方案会起作用,但我不能确定字符串的实际外观,所以我抛出了一堆想法。

$haystack0 = strip_tags( $haystack); 
echo '0. ' . $haystack0 * 2; echo "<br />\n";

$haystack1 = trim( strip_tags( $haystack)); 
echo '1. ' . $haystack1 * 2; echo "<br />\n";

preg_match( '/\b(\d+\.\d+)\b/', $haystack, $match);
$haystack2 = $match[1];
echo '2. ' . $haystack2 * 2; echo "<br />\n";

$haystack3 = preg_replace( '/[^\d\.]+/', '', $haystack); 
echo '3. ' . $haystack3 * 2; echo "<br />\n";

编辑:这是实际的字符串:

string(222) "</CurrencyCode><MonetaryValue>33.35</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery/><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>"

所以,我们把它放入$haystack并去掉 XML 标签:

$haystack = "</CurrencyCode><MonetaryValue>33.35</MonetaryValue></TotalCharges><GuaranteedDaysToDelivery/><ScheduledDeliveryTime/><RatedPackage><TransportationCharges><CurrencyCode>";
$haystack = strip_tags( $haystack);
var_dump( $haystack);

我们得到输出

 string(5) "33.35"

所以,现在,我们可以将它乘以 2,得到

 float(66.7)

问题解决了!

于 2012-07-26T21:45:27.400 回答
0

我刚刚对此进行了测试并且工作正常,但是您会丢失十进制值:

<?php
$handling = '12.24';

echo intval($handling) * 2; // prints 24
echo floatval($handling) * 2; // prints 24.48

?>

要解决您的问题,您应该使用 floatval() 函数包装 $handling:

<?php function ups($dest_zip,$service,$weight,$length,$width,$height)
    </RatingServiceSelectionRequest>";
    $ch = curl_init("https://www.ups.com/ups.app/xml/Rate");
    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch,CURLOPT_POST,1);
    curl_setopt($ch,CURLOPT_TIMEOUT, 60);
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYPEER, 0);
    curl_setopt ($ch, CURLOPT_SSL_VERIFYHOST, 0);
    curl_setopt($ch,CURLOPT_POSTFIELDS,$data);
    $result=curl_exec ($ch);        
    $upsout = (explode('USD', $result, 15));    
    $handling = floatval($upsout[3]);  // <--- recommend wrap here if you need to use variable later in math
    echo "<br><br>Shipping: $";
    echo $handling;
    echo " USD<br><br>";       
    curl_close($ch);
    // print_r ($upsout);}
 ?>
于 2012-07-26T21:03:50.877 回答
0

编辑:再想一想,你确定你的示例代码与 $test 确实是这样发生的吗? 类型杂耍应该允许您将字符串乘以一个数字并返回一个数字。如果您将示例代码的测试行更改为:

print "handling is $handling \n calculated value is $test"; 

原文:由于这似乎是您从 UPS 退回的成本,它很可能不是整数,因为会有美分(您提到该值是形式00.00000.00似乎也证实了这一点)。

因此,您需要使用以下方法之一将其转换为浮点数:

$test = (float)$handling * 2;
$test2 = floatval($handling) * 2;
于 2012-07-26T21:10:00.280 回答