本文整理匯總了PHP中payment::getError方法的典型用法代碼示例。如果您正苦於以下問題:PHP payment::getError方法的具體用法?PHP payment::getError怎麽用?PHP payment::getError使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類payment
的用法示例。
在下文中一共展示了payment::getError方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: u
$app->render(new u('payment.flexiload.request'));
});
$app->post('flexiload/confirm/', function () use($app) {
$app->view->setData('form_action', BASEURL . "dashboard/payment/add/flexiload/confirm/process");
$app->view->setData('form_title', "Are you confirm?");
$app->view->setData('payment_amount', $app->request()->post('payment_amount'));
$app->view->setData('payment_memo', $app->request()->post('payment_memo'));
$app->view->setData('customer_id', $app->request()->post('customer_id'));
$app->render(new u('payment.flexiload.request_confirm'));
});
$app->get('/flexiload/confirm/process', function () use($app) {
$payment = new payment();
$payment->who_is_paying = L::getSessionValue('usid');
$payment->who_is_paying = $app->request()->post();
$payment->payment_type = 'return';
$payment->save();
if ($payment->fails()) {
$app->view->setData('error', 1);
$app->view->setData('msg', $payment->getError());
$app->render(new u('msg'));
} else {
$app->view->setData('success', 1);
$app->view->setData('msg', "Succesfully Payment Returned.");
$app->render(new u('msg'));
}
});
//Flexiload End
});
//End return payment operation
});
});