首页 > 代码库 > discuz X3.1 源代码阅读,记录代码片段
discuz X3.1 源代码阅读,记录代码片段
require_once libfile(‘function/post‘); // /source/function/function_post.php require_once libfile(‘post/newthread‘, ‘include‘); // insert 数据 , /source/include/post/post_newthread.php $modthread = C::m(‘forum_thread‘); // /source/class/model/model_forum_thread.php C::t(‘forum_post‘)->insert($tableid, $data); // /source/class/table/table_forum_post.php include template(‘diy:forum/viewthread:36260‘); // 板块通用 ./data/diy/template/default/forum/viewthread.htm ;指定帖子(tid=36260)./data/diy/template/default/forum/viewthread_36260.htm ;默认模板 ./template/default/forum/viewthread.htm include template(‘plugin1:module1/action1:36260‘); //./source/plugin/plugin1/template/module1/action1.htm include template(‘forum/viewthread_node‘); // ./template/default/forum/viewthread_node.htm class Helper{ function sizecount($size) { if($size >= 1073741824) { $size = round($size / 1073741824 * 100) / 100 . ‘ GB‘; } elseif($size >= 1048576) { $size = round($size / 1048576 * 100) / 100 . ‘ MB‘; } elseif($size >= 1024) { $size = round($size / 1024 * 100) / 100 . ‘ KB‘; } else { $size = intval($size) . ‘ Bytes‘; } return $size; } }
discuz X3.1 源代码阅读,记录代码片段
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。