为什么我不能访问这个数组元素
why I can't accessing this array elements
这是 2co 的多个数组我正在尝试获取 return 值并通过电子邮件将其发送给管理员,但我无法访问该数组中的值。
<?php
require_once 'payment-api/Twocheckout.php';
Twocheckout::privateKey('4D67BA12-CE09-4F1D-AB20-0133F24E3472');
Twocheckout::sellerId('901249656');
Twocheckout::sandbox(true);
try {
$charge = Twocheckout_Charge::auth(array(
"merchantOrderId" => "123",
"token" => $_POST['token'],
"currency" => 'USD',
"total" => '10.00',
"billingAddr" => array(
"name" => 'Testing Tester',
"addrLine1" => '123 Test St',
"city" => 'Columbus',
"state" => 'OH',
"zipCode" => '43123',
"country" => 'USA',
"email" => 'example@2co.com',
"phoneNumber" => '555-555-5555'
)
));
if ($charge['response']['responseCode'] == 'APPROVED') {
echo "Thanks for your Order!";
echo "<h3>Return Parameters:</h3>";
echo "<pre>";
echo "His name" . $charge['billingAddr']['name'];
echo "</pre>";
}
} catch (Twocheckout_Error $e) {
print_r($e->getMessage());
}
这就是我尝试访问这些值的方式。
echo "His name" . $charge['billingAddr']['name'];
我这里做错了什么。
我从 print_r($charge);
得到了什么
Array
(
[validationErrors] =>
[exception] =>
[response] => Array
(
[type] => AuthResponse
[currencyCode] => USD
[shippingAddr] => Array
(
[addrLine1] =>
[addrLine2] =>
[city] =>
[zipCode] =>
[phoneNumber] =>
[phoneExtension] =>
[email] =>
[name] =>
[state] =>
[country] =>
)
[merchantOrderId] => 123
[orderNumber] => 9093719883561
[transactionId] => 9093719883582
[billingAddr] => Array
(
[addrLine1] => 123 Test St
[addrLine2] =>
[city] => Columbus
[zipCode] => 43123
[phoneNumber] => 555-555-5555
[phoneExtension] =>
[email] => example@2co.com
[name] => Testing Tester
[state] => OH
[country] => USA
)
[lineItems] => Array
(
[0] => Array
(
[duration] =>
[options] => Array
(
)
[description] =>
[price] => 10.00
[quantity] => 1
[recurrence] =>
[startupFee] =>
[productId] =>
[tangible] => N
[name] => 123
[type] => product
)
)
[recurrentInstallmentId] =>
[responseMsg] => Successfully authorized the provided credit card
[responseCode] => APPROVED
[total] => 10.00
[errors] =>
)
)
使用:
$charge['response']['billingAddr']['name'];
您忘记访问 response
键。
这是 2co 的多个数组我正在尝试获取 return 值并通过电子邮件将其发送给管理员,但我无法访问该数组中的值。
<?php
require_once 'payment-api/Twocheckout.php';
Twocheckout::privateKey('4D67BA12-CE09-4F1D-AB20-0133F24E3472');
Twocheckout::sellerId('901249656');
Twocheckout::sandbox(true);
try {
$charge = Twocheckout_Charge::auth(array(
"merchantOrderId" => "123",
"token" => $_POST['token'],
"currency" => 'USD',
"total" => '10.00',
"billingAddr" => array(
"name" => 'Testing Tester',
"addrLine1" => '123 Test St',
"city" => 'Columbus',
"state" => 'OH',
"zipCode" => '43123',
"country" => 'USA',
"email" => 'example@2co.com',
"phoneNumber" => '555-555-5555'
)
));
if ($charge['response']['responseCode'] == 'APPROVED') {
echo "Thanks for your Order!";
echo "<h3>Return Parameters:</h3>";
echo "<pre>";
echo "His name" . $charge['billingAddr']['name'];
echo "</pre>";
}
} catch (Twocheckout_Error $e) {
print_r($e->getMessage());
}
这就是我尝试访问这些值的方式。
echo "His name" . $charge['billingAddr']['name'];
我这里做错了什么。
我从 print_r($charge);
Array
(
[validationErrors] =>
[exception] =>
[response] => Array
(
[type] => AuthResponse
[currencyCode] => USD
[shippingAddr] => Array
(
[addrLine1] =>
[addrLine2] =>
[city] =>
[zipCode] =>
[phoneNumber] =>
[phoneExtension] =>
[email] =>
[name] =>
[state] =>
[country] =>
)
[merchantOrderId] => 123
[orderNumber] => 9093719883561
[transactionId] => 9093719883582
[billingAddr] => Array
(
[addrLine1] => 123 Test St
[addrLine2] =>
[city] => Columbus
[zipCode] => 43123
[phoneNumber] => 555-555-5555
[phoneExtension] =>
[email] => example@2co.com
[name] => Testing Tester
[state] => OH
[country] => USA
)
[lineItems] => Array
(
[0] => Array
(
[duration] =>
[options] => Array
(
)
[description] =>
[price] => 10.00
[quantity] => 1
[recurrence] =>
[startupFee] =>
[productId] =>
[tangible] => N
[name] => 123
[type] => product
)
)
[recurrentInstallmentId] =>
[responseMsg] => Successfully authorized the provided credit card
[responseCode] => APPROVED
[total] => 10.00
[errors] =>
)
)
使用:
$charge['response']['billingAddr']['name'];
您忘记访问 response
键。