本文整理匯總了PHP中Logs::update_log方法的典型用法代碼示例。如果您正苦於以下問題:PHP Logs::update_log方法的具體用法?PHP Logs::update_log怎麽用?PHP Logs::update_log使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Logs
的用法示例。
在下文中一共展示了Logs::update_log方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: change_status
function change_status()
{
$id = intval(Url::get('id'), 0);
$amount = intval(Url::get('amount'), 0);
if ($amount == '' || $amount <= 0) {
echo 'amount_null';
} else {
$log = Logs::get_log($id);
$str_change = array();
if (!empty($log)) {
$str_change = unserialize($log['data']);
}
$value = array('status' => '00', 'amount' => $amount, 'description' => 'Giao dịch thành công.', 'pin' => $str_change['pin'], 'serial' => $str_change['serial'], 'type' => $str_change['type']);
$value = serialize($value);
$id = Logs::update_log($id, array('data' => $value));
if ($id) {
$str_topup = array('uid' => $log['uid'], 'serial' => $str_change['serial'], 'pin' => $str_change['pin'], 'type' => $str_change['type'], 'created' => $log['origin_time'], 'price' => $amount);
DB::insert('topup', $str_topup);
$user = PersonalDB::get_account_byId($log['uid']);
$new_coin = $user['coin'] + $amount;
DB::update_id('account', array('coin' => $new_coin), $user['id']);
}
}
exit;
}