age_url'], $post['message']) : $post['message']; } } } else { $post['filelist'] = array(); } $post['classname'] = 'post'; } function comment_format(&$post) { global $conf, $uid, $gid, $forumlist; if (empty($post)) return; $forum = $post['fid'] ? forum_read($post['fid']) : ''; $thread = well_thread_read_cache($post['tid']); if ($thread) { //$post['fid'] = $thread['fid']; $post['closed'] = $thread['closed']; $post['subject'] = $thread['subject']; $post['url'] = $thread['url']; } else { $post['closed'] = 0; $post['subject'] = lang('thread_not_exists'); $post['url'] = ''; } $post['create_date_fmt'] = humandate($post['create_date']); //$post['message'] = stripslashes(htmlspecialchars_decode($post['message'])); $user = user_read_cache($post['uid']); $post['username'] = array_value($user, 'username'); $post['user_avatar_url'] = array_value($user, 'avatar_url'); $post['user'] = $user ? user_safe_info($user) : user_guest(); isset($post['floor']) || $post['floor'] = 0; // 权限判断 $post['allowupdate'] = 2 == array_value($forum, 'comment', 0) && ($uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowupdate')); $post['allowdelete'] = group_access($gid, 'allowuserdelete') && $uid == $post['uid'] || forum_access_mod($post['fid'], $gid, 'allowdelete'); $post['user_url'] = url('user-' . $post['uid'] . ($post['uid'] ? '' : '-' . $post['pid'])); if ($post['files'] > 0) { list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($post['pid']); // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 if (2 == $conf['attach_on']) { foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $post['message'] = FALSE !== strpos($post['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $post['message']) : $post['message']; } } $post['filelist'] = $filelist; } else { $post['filelist'] = array(); } $post['classname'] = 'post'; } function comment_format_message(&$val) { global $conf; if (empty($val)) return; // 使用云储存 if (1 == $conf['attach_on'] && 1 == $val['attach_on']) { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } elseif (2 == $conf['attach_on'] && 2 == $val['attach_on']) { // 使用图床 list($attachlist, $imagelist, $filelist) = well_attach_find_by_tid($val['tid']); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换成图床 $val['message'] = FALSE !== strpos($val['message'], $url) && $attach['image_url'] ? str_replace($url, $attach['image_url'], $val['message']) : $val['message']; } } else { $val['message'] = str_replace('="upload/', '="' . file_path($val['attach_on']), $val['message']); } //$val['message'] = stripslashes(htmlspecialchars_decode($val['message'])); } // 把内容中使用了云储存的附件链接替换掉 function comment_message_replace_url($pid, $message) { global $conf; if (0 == $conf['attach_on']) { $message = FALSE !== strpos($message, '="../upload/') ? str_replace('="../upload/', '="upload/', $message) : $message; $message = FALSE !== strpos($message, '="/upload/') ? str_replace('="/upload/', '="upload/', $message) : $message; } elseif (1 == $conf['attach_on']) { // 使用云储存 $message = str_replace('="' . $conf['cloud_url'] . 'upload/', '="upload/', $message); } elseif (2 == $conf['attach_on']) { // 使用图床 评论使用图床,mysql会过多,写死链接到内容是减轻mysql的过多的方法 list($attachlist, $imagelist, $filelist) = well_attach_find_by_pid($pid); foreach ($imagelist as $key => $attach) { $url = $conf['upload_url'] . 'website_attach/' . $attach['filename']; // 替换回相对链接 $message = $attach['image_url'] && FALSE !== strpos($message, $attach['image_url']) ? str_replace($attach['image_url'], $url, $message) : $message; } } return $message; } function comment_filter($val) { unset($val['userip']); return $val; } function comment_highlight_keyword($str, $k) { $r = str_ireplace($k, '' . $k . '', $str); return $r; } // //
function comment_message_format(&$s) { if (xn_strlen($s) < 100) return; $s = preg_replace('#.*?
#is', '', $s); $s = str_ireplace(array('
', '
', '
', '

', '', '', '', '' . ''), "\r\n", $s); $s = str_ireplace(array(' '), " ", $s); $s = strip_tags($s); $s = preg_replace('#[\r\n]+#', "\n", $s); $s = xn_substr(trim($s), 0, 100); $s = str_replace("\n", '
', $s); } // 对内容进行引用 function comment_quote($quotepid) { $quotepost = comment_read($quotepid); if (empty($quotepost)) return ''; $uid = $quotepost['uid']; $s = $quotepost['message']; $s = comment_brief($s, 100); $userhref = url('user-' . $uid); $user = user_read_cache($uid); $r = '
' . $user['username'] . ' ' . $s . '
'; return $r; } // 获取内容的简介 0: html, 1: txt; 2: markdown; 3: ubb function comment_brief($s, $len = 100) { $s = strip_tags($s); $s = htmlspecialchars($s); $more = xn_strlen($s) > $len ? ' ... ' : ''; $s = xn_substr($s, 0, $len) . $more; return $s; } ?>&& !empty($user_update) AND user_big_update(array('uid' => $uids), $user_update); include_once _include(APP_PATH . 'model/operate.func.php'); operate_big_insert($operate_create); } function well_comment_pending_delete_by_tid($tid) { global $gid, $uid, $time; $commentlist = well_comment_verify__find(array('tid' => $tid), array(), 1, 10000, ''); if(!$commentlist) return NULL; $pidarr = array(); $uidarr = array(); foreach ($commentlist as $comment) { $pidarr[] = $comment['pid']; isset($uidarr[$comment['uid']]) ? $uidarr[$comment['uid']] += 1 : $uidarr[$comment['uid']] = 1; } comment__delete(array('pid' => $pidarr)); well_attach_delete_by_pid($pidarr); well_comment_verify_delete($pidarr); $uids = array(); $user_update = array(); foreach ($uidarr as $_uid => $n) { $uids[] = $_uid; // 待审核-1 $user_update[$_uid] = array('well_verify_comments-' => $n); } !empty($uids) && !empty($user_update) AND user_big_update(array('uid' => $uids), $user_update); } ?>征信能查到哪些贷款记录?微财数科来科普

征信能查到哪些贷款记录?微财数科来科普

fjmyhfvclm2025-04-07  46

征信,听起来有点高大上,但其实它和我们的日常生活息息相关。无论是买房贷款、买车分期,还是申请贷款,平台都会查一查你的征信报告,看看你是不是个“靠谱”的借款人。那么,征信报告里到底会记录哪些贷款信息呢?今天,微财数科就来带你一探究竟!

首先,征信系统最基础的功能就是记录银行贷款。只要你跟银行打过交道,比如申请过房贷、车贷,这些记录都会被银行如实上报到央行征信系统。所以,如果你有逾期还款或者欠款不还的情况,征信报告上可是会“记上一笔”的哦!微财数科提醒大家,按时还款是维护信用记录的“基本功”,千万别因为一时疏忽让自己的信用“掉链子”。

其次,征信系统还会记录持牌消费金融公司的贷款。消费金融公司是经过银保监会批准的“正规军”,专门为大家提供消费贷款服务。如果你在这些平台上借过钱,贷款记录也会被上报到征信系统。微财数科建议大家,虽然消费贷款方便快捷,但也要量力而行,别让“买买买”变成“贷贷贷”,最后影响了自己的信用评分。

除了银行和消费金融公司,征信系统还会记录大部分正规小贷公司的贷款。随着金融科技的发展,越来越多的互联网小贷平台接入了征信系统。如果你在这些平台上借过钱,贷款记录也会被上传到征信报告里。微财数科提醒大家,小贷平台虽然门槛低、放款快,但也要注意按时还款!

那么,如何保护好自己的征信记录呢?微财数科给你支几招:

️按时还款:无论是银行贷款、消费金融公司贷款,还是小贷平台的借款,按时还款都是维护信用记录的“黄金法则”。逾期还款不仅会让你多掏利息,还会在征信报告上留下“污点”,影响未来的贷款申请。

️合理借贷:别因为一时冲动就到处借钱,尤其是通过多个平台同时借款。过多的贷款记录可能会让金融机构觉得你的财务状况不稳定,从而影响你的信用评分。微财数科建议,借贷要量力而行,别让“借钱一时爽,还款火葬场”成为现实。

️定期查征信:每年至少查一次自己的征信报告,看看有没有错误记录。如果发现征信报告中有不实信息,可以向相关金融机构或征信中心提出异议申请。

️谨慎授权:在使用金融平台时,别轻易授权第三方机构查询你的征信报告。过多的征信查询记录可能会让金融机构觉得你频繁申请贷款,从而影响你的信用评分。

最后,微财数科简单总结一下今天的科普,征信记录就像是我们经济生活中的“身份证”,良好的信用记录不仅能帮你顺利申请贷款,还能在租房、求职等方面带来便利。

希望这篇文章能让你对征信有更清晰的认识!

转载请注明原文地址:http://demo.aspcms.cn/tech/1702743.html
上一篇下一篇
00

热门资讯