博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
“博客迷”(BlogMi)源码阅读[2]
阅读量:6630 次
发布时间:2019-06-25

本文共 7489 字,大约阅读时间需要 24 分钟。

首页面包括的文件源码如下:

文件实现了:

1.打开所有的错误输出.

2.包括了两个文件.

3.定义了一个404页面.

1 
404 Not Found";12 echo "The page that you have requested could not be found.";13 exit();14 }15 ?>

tag.php源码如下:

文件实现了:

1.实现对全局变量转换成HTML实体并返回的函数.

2.定义了主题URL地址.

3.一些内容类型确定函数.

4.各种内容跳转链接地址生成函数.(首页文件中用正则表达式来匹配这些链接地址)

 

1 
" (大于)转换为 HTML 实体: 5 if ($print) { 6 echo $site_name; 7 return; 8 } 9 return $site_name; 10 } 11 12 function mc_site_desc($print = true) { 13 global $mc_config; 14 $site_desc = htmlspecialchars($mc_config['site_desc']); 15 if ($print) { 16 echo $site_desc; 17 return; 18 } 19 return $site_desc; 20 } 21 22 function mc_site_link($print = true) { 23 global $mc_config; 24 $site_link = $mc_config['site_link']; 25 if ($print) { 26 echo $site_link; 27 return; 28 } 29 return $site_link; 30 } 31 32 function mc_nick_name($print = true) { 33 global $mc_config; 34 $nick_name = htmlspecialchars($mc_config['user_nick']); 35 if ($print) { 36 echo $nick_name; 37 return; 38 } 39 return $nick_name; 40 } 41 42 function mc_theme_url($path, $print = true) { 43 global $mc_config; 44 $url = $mc_config['site_link'].'/files/theme/v/'.$path; 45 if ($print) { 46 echo $url; 47 return; 48 } 49 return $url; 50 } 51 52 function mc_is_post() { 53 global $mc_get_type; 54 return $mc_get_type == 'post'; 55 } 56 57 function mc_is_page() { 58 global $mc_get_type; 59 return $mc_get_type == 'page'; 60 } 61 62 function mc_is_tag() { 63 global $mc_get_type; 64 return $mc_get_type == 'tag'; 65 } 66 67 function mc_is_date() { 68 global $mc_get_type; 69 return $mc_get_type == 'date'; 70 } 71 72 function mc_is_archive() { 73 global $mc_get_type; 74 return $mc_get_type == 'archive'; 75 } 76 77 function mc_tag_name($print=true) { 78 global $mc_get_name; 79 if ($print) { 80 echo htmlspecialchars($mc_get_name); 81 return; 82 } 83 return $mc_get_name; 84 } 85 86 function mc_date_name($print=true) { 87 global $mc_get_name; 88 if ($print) { 89 echo htmlspecialchars($mc_get_name); 90 return; 91 } 92 return $mc_get_name; 93 } 94 95 function mc_has_new() { 96 global $mc_page_num; 97 return $mc_page_num != 1; 98 } 99 100 function mc_has_old() {101 global $mc_page_num, $mc_post_count, $mc_post_per_page;102 return $mc_page_num < ($mc_post_count / $mc_post_per_page);103 }104 105 function mc_goto_old($text) {106 global $mc_get_type, $mc_get_name, $mc_page_num, $mc_config;107 if ($mc_get_type == 'tag') {108 echo '';115 echo $text;116 echo '';117 } 118 elseif ($mc_get_type == 'date') {119 echo '';126 echo $text;127 echo '';128 } else {129 echo '';134 echo $text;135 echo '';136 }137 }138 139 function mc_goto_new($text) {140 global $mc_get_type, $mc_get_name, $mc_page_num, $mc_config;141 if ($mc_get_type == 'tag') {142 echo '';149 echo $text;150 echo '';151 }152 elseif ($mc_get_type == 'date') {153 echo '';160 echo $text;161 echo '';162 } else {163 echo '';168 echo $text;169 echo '';170 }171 }172 173 function mc_date_list($item_begin='
  • ', $item_gap='', $item_end='
  • ') {174 global $mc_dates, $mc_config;175 if (isset($mc_dates)) {176 $date_count = count($mc_dates);177 for ($i = 0; $i < $date_count; $i ++) {178 $date = $mc_dates[$i];179 echo $item_begin;180 echo '';185 echo $date;186 echo '';187 echo $item_end;188 if ($i < $date_count - 1)189 echo $item_gap;190 }191 }192 }193 194 function mc_tag_list($item_begin='
  • ', $item_gap='', $item_end='
  • ') {195 global $mc_tags, $mc_config;196 if (isset($mc_tags)) {197 $tag_count = count($mc_tags);198 for ($i = 0; $i < $tag_count; $i ++) {199 $tag = $mc_tags[$i];200 echo $item_begin;201 echo '';206 echo $tag;207 echo '';208 echo $item_end;209 if ($i < $tag_count - 1)210 echo $item_gap;211 }212 }213 }214 215 function mc_next_post() {216 global $mc_posts, $mc_post_ids, $mc_post_count, $mc_post_i, $mc_post_i_end, $mc_post_id, $mc_post, $mc_page_num, $mc_post_per_page;217 if (!isset($mc_posts))218 return false;219 if (!isset($mc_post_i)) {220 $mc_post_i = 0 + ($mc_page_num - 1) * $mc_post_per_page;221 $mc_post_i_end = $mc_post_i + $mc_post_per_page;222 if ($mc_post_count < $mc_post_i_end)223 $mc_post_i_end = $mc_post_count;224 }225 if ($mc_post_i == $mc_post_i_end)226 return false;227 $mc_post_id = $mc_post_ids[$mc_post_i];228 $mc_post = $mc_posts[$mc_post_id];229 $mc_post_i += 1;230 return true;231 }232 233 function mc_the_title($print = true) {234 global $mc_post;235 if ($print) {236 echo htmlspecialchars($mc_post['title']);237 return;238 }239 return htmlspecialchars($mc_post['title']);240 }241 242 function mc_the_date($print = true) {243 global $mc_post;244 if ($print) {245 echo $mc_post['date'];246 return;247 }248 return $mc_post['date'];249 }250 251 function mc_the_time($print = true) {252 global $mc_post;253 if ($print) {254 echo $mc_post['time'];255 return;256 }257 return $mc_post['time'];258 }259 260 function mc_the_tags($item_begin='', $item_gap=', ', $item_end='') {261 global $mc_post, $mc_config;262 $tags = $mc_post['tags'];263 $count = count($tags);264 for ($i = 0; $i < $count; $i ++) {265 $tag = htmlspecialchars($tags[$i]);266 echo $item_begin;267 echo '';272 echo $tag;273 echo '';274 echo $item_end;275 if ($i < $count - 1)276 echo $item_gap;277 }278 }279 280 function mc_the_content($print = true) {281 global $mc_data;282 if (!isset($mc_data)) {283 global $mc_post_id;284 $data = unserialize(file_get_contents('files/posts/data/'.$mc_post_id.'.dat')); 285 $html = $data['content']; 286 }287 else {288 $html = $mc_data['content'];289 }290 if ($print) {291 echo $html;292 return;293 }294 return $html;295 }296 297 function mc_the_link() {298 global $mc_post_id, $mc_post, $mc_config;299 echo '';304 echo htmlspecialchars($mc_post['title']);305 echo '';306 }307 308 function mc_post_link() {309 global $mc_post_id, $mc_post, $mc_config;310 echo $mc_config['site_link'];311 echo '/?post/';312 echo $mc_post_id;313 }314 315 function mc_page_title() {316 global $mc_post_id, $mc_post, $mc_config;317 echo htmlspecialchars($mc_post['title']);318 }319 320 function mc_can_comment() {321 global $mc_post_id, $mc_post;322 return isset($mc_post['can_comment']) ? $mc_post['can_comment'] == '1' : true;323 }324 325 function mc_comment_code() {326 global $mc_config;327 echo isset($mc_config['comment_code']) ? $mc_config['comment_code'] : '';328 }329 ?>

    conf.php源码如下:

    1.定义全局配置.该配置文件可以通过后台登录修改.管理员帐户密码全是明文的.

    1 
    'http://127.0.0.1:8080', 4 'site_name' => '博客迷', 5 'site_desc' => '不需要数据库的迷你博客程序', 6 'user_name' => 'admin', 7 'user_pass' => '2046', 8 'user_nick' => 'BlogMi', 9 'comment_code' => '',10 )11 ?>

    publish.php源码如下:

    1.该文件是用来存放文章信息的.

    包含博客的id,标题,标签等.每发表一篇博文就会添加一条信息.

    1 
    4 array ( 5 'id' => 'pxvczn', 6 'state' => 'publish', 7 'title' => 'Hello,World!', 8 'tags' => 9 array (10 0 => '妙语',11 1 => '男人',12 2 => '女人',13 ),14 'date' => '2012-04-05',15 'time' => '10:10:10',16 'can_comment' => '1',17 ),18 )19 ?>

     

    转载于:https://www.cnblogs.com/OneL1fe/p/5388332.html

    你可能感兴趣的文章
    《异构信息网络挖掘: 原理和方法(1)》一1.2 为什么异构网络挖掘是一项新的挑战...
    查看>>
    heartbeat+lvs构建高可用负载均衡集群
    查看>>
    《Windows Server 2012 Hyper-V虚拟化管理实践》一2.3 Hyper-V角色安装后的状态
    查看>>
    《51单片机应用开发从入门到精通》——1.3 Keil uVision2集成开发环境
    查看>>
    菜鸟双11“十亿级包裹”之战
    查看>>
    [MySQL 5.6优化] -- limit x,x 优化
    查看>>
    Win 10 毛玻璃特效爆发!比 Vista/Win 7 帅多了
    查看>>
    《设计的方法》目录—导读
    查看>>
    《深入理解Elasticsearch(原书第2版)》一2.6 小结
    查看>>
    《R语言数据挖掘:实用项目解析》——1.7 创建新函数
    查看>>
    优麒麟 14.04 增强版发布-开箱即用
    查看>>
    《51单片机应用开发范例大全(第3版)》——1.2 Keil Vision2
    查看>>
    《jQuery UI 开发指南》——1.4 在HTML页面中应该引入哪些文件
    查看>>
    《新一代SDN——VMware NSX 网络原理与实践》——1.2 认识SDN
    查看>>
    Science:2030年,或将改变生活的5项人工智能技术
    查看>>
    《Python Cookbook(第3版)中文版》——第6章 数据编码与处理 6.1 读写CSV数据
    查看>>
    SQL Server 索引维护常用方法总结
    查看>>
    如何将Vim打造成一个成熟的IDE
    查看>>
    《jQuery Cookbook中文版》——1.2 在DOM加载之后、整个页面加载之前执行jQuery/JavaScript代码...
    查看>>
    对话院士张钹:人工智能创业如何避免昙花一现
    查看>>