輸出指定行我使用一種形式收款和使用print_r的,我可以看到下面的輸出...PHP - 從Array
[customer] => ChargifyCustomer Object
(
[email] => [email protected]
[first_name] => John
[last_name] => Doe
[organization] =>
[reference] =>
[id] => 2588487
[created_at] => 2012-12-14T08:50:45-05:00
[updated_at] => 2012-12-14T08:50:45-05:00
)
的PHP生產這種輸出下面看到...
try {
$new_subscription = $subscription->create();
if ($new_subscription != '') {
// session_unset();
echo '<pre>';
print_r($new_subscription);
echo '</pre>';
foreach ($new_subscription as $item) {
echo 'First Name' . $item->customer->first_name . '.';
}
}
}
雖然每次加載頁面時,名字都沒有被回顯。相反,它只是說'名字'。幾次。
請幫忙確定我的錯誤在哪裏。
你爲什麼不嘗試在'foreach'循環中'print_r($ item)'並且看看它是什麼樣的。我猜你已經快到了 –