= 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;
}
?>Ubantu24.04 系统U盘制作 Ubuntu安装教程你的位置:
首页>运维笔记>Ubantu24.04 系统U盘制作 Ubuntu安装教程
该过程使用道具:
U盘(我用的8G的,建议8-32G)
Rufus(我用的windows10)
我是给旧笔记本装的哈(神舟 优雅A460-i5)电池报废了,插电源使用/(ㄒoㄒ)/~~
ubantu下载链接:www.ubuntu
适用于桌面的 Ubuntu 的最新 LTS 版本 个人电脑和笔记本电脑。LTS 代表长期支持——这意味着五年的免费安全性和 维护更新,使用 Ubuntu Pro 延长至 10 年
他这里有推荐制作启动盘的工具: balenaEtcher (我没法用不知道为什么)
建议便携版,不需要安装,双击直接使用
下载完成后使用 balenaEtcher 将.iso文件写入U盘(建议8-32G)
(我用不了,就图片介绍下流程了)
希望大家都是点击现在烧录就正常烧录等待完成(不要像我这样,重新下载镜像也不行,只能换个烧录工具了)
这就是第二个烧录工具了 Rufus
下载完成后使用 Rufus 将.iso文件写入U盘(建议8-32G)
双击直接打开使用,免安装
选择好U盘和镜像就可以开始了,其余的默认就好
点击开始后会提示是ISO混合模式直接点OK
这个时还提示一个文件需要联网获取
然后会提示该操作将清除U盘上的所有东西(重要东西一定要提前保存好)
漫长等待。。。(等待进度条满 准备就绪时)
表示准备工作完成了,接下来就是给设备刷机了(Windows端操作结束)