OSDN Git Service

BugTrack/767: Warning: unpack(): Type H: outside of string in ... (with PHP 4.3.10)
[pukiwiki/pukiwiki.git] / lib / func.php
1 <?php
2 /////////////////////////////////////////////////
3 // PukiWiki - Yet another WikiWikiWeb clone.
4 //
5 // $Id: func.php,v 1.21 2004/12/30 07:30:55 henoheno Exp $
6 //
7
8 // Ê¸»úÎó¤¬InterWikiName¤«¤É¤¦¤«
9 function is_interwiki($str)
10 {
11         global $InterWikiName;
12
13         return preg_match("/^$InterWikiName$/", $str);
14 }
15
16 // Ê¸»úÎ󤬥ڡ¼¥¸Ì¾¤«¤É¤¦¤«
17 function is_pagename($str)
18 {
19         global $BracketName;
20
21         $is_pagename = (! is_interwiki($str) &&
22                   preg_match("/^(?!\/)$BracketName$(?<!\/$)/", $str) &&
23                 ! preg_match('/(^|\/)\.{1,2}(\/|$)/', $str));
24
25         $pattern = '';
26         if (defined('SOURCE_ENCODING')) {
27                 switch(SOURCE_ENCODING){
28                 case 'UTF-8':
29                         $pattern = '/^(?:[\x00-\x7F]|(?:[\xC0-\xDF][\x80-\xBF])|(?:[\xE0-\xEF][\x80-\xBF][\x80-\xBF]))+$/';
30                         break;
31                 case 'EUC-JP':
32                         $pattern = '/^(?:[\x00-\x7F]|(?:[\x8E\xA1-\xFE][\xA1-\xFE])|(?:\x8F[\xA1-\xFE][\xA1-\xFE]))+$/';
33                         break;
34                 }
35         }
36         if($pattern !== '') $is_pagename = ($is_pagename && preg_match($pattern, $str));
37
38         return $is_pagename;
39 }
40
41 // Ê¸»úÎó¤¬URL¤«¤É¤¦¤«
42 function is_url($str, $only_http = FALSE)
43 {
44         $scheme = $only_http ? 'https?' : 'https?|ftp|news';
45         return preg_match('/^(' . $scheme . ')(:\/\/[-_.!~*\'()a-zA-Z0-9;\/?:\@&=+\$,%#]*)$/', $str);
46 }
47
48 // ¥Ú¡¼¥¸¤¬Â¸ºß¤¹¤ë¤«
49 function is_page($page, $reload = FALSE)
50 {
51         if ($reload) clearstatcache();
52         return file_exists(get_filename($page));
53 }
54
55 // ¥Ú¡¼¥¸¤¬ÊÔ½¸²Äǽ¤«
56 function is_editable($page)
57 {
58         global $cantedit;
59         static $is_editable = array();
60
61         if (! isset($is_editable[$page])) {
62                 $is_editable[$page] = (
63                         is_pagename($page) &&
64                         ! is_freeze($page) &&
65                         ! in_array($page, $cantedit)
66                 );
67         }
68
69         return $is_editable[$page];
70 }
71
72 // ¥Ú¡¼¥¸¤¬Åà·ë¤µ¤ì¤Æ¤¤¤ë¤«
73 function is_freeze($page, $force = FALSE)
74 {
75         global $function_freeze;
76         static $is_freeze = array();
77
78         if ($force === TRUE) $is_freeze = array();
79
80         if (isset($is_freeze[$page])) return $is_freeze[$page];
81         if (! $function_freeze || ! is_page($page)) {
82                 $is_freeze[$page] = FALSE;
83                 return FALSE;
84         }
85
86         list($lines) = get_source($page);
87         $is_freeze[$page] = (rtrim($lines) == '#freeze');
88
89         return $is_freeze[$page];
90 }
91
92 // ¼«Æ°¥Æ¥ó¥×¥ì¡¼¥È
93 function auto_template($page)
94 {
95         global $auto_template_func, $auto_template_rules;
96
97         if (! $auto_template_func) return '';
98
99         $body = '';
100         $matches = array();
101         foreach ($auto_template_rules as $rule => $template) {
102
103                 if (! preg_match("/$rule/", $page, $matches)) continue;
104
105                 $template_page = preg_replace("/$rule/", $template, $page);
106                 if (! is_page($template_page)) continue;
107
108                 $body = join('', get_source($template_page));
109
110                 // ¸«½Ð¤·¤Î¸ÇÍ­IDÉô¤òºï½ü
111                 $body = preg_replace('/^(\*{1,3}.*)\[#[A-Za-z][\w-]+\](.*)$/m', '$1$2', $body);
112
113                 // #freeze¤òºï½ü
114                 $body = preg_replace('/^#freeze\s*$/m', '', $body);
115
116                 $count = count($matches);
117                 for ($i = 0; $i < $count; $i++)
118                         $body = str_replace("\$$i", $matches[$i], $body);
119
120                 break;
121         }
122         return $body;
123 }
124
125 // ¸¡º÷¸ì¤òŸ³«¤¹¤ë
126 function get_search_words($words, $special = FALSE)
127 {
128         $retval = array();
129         // Perl¥á¥â - Àµ¤·¤¯¥Ñ¥¿¡¼¥ó¥Þ¥Ã¥Á¤µ¤»¤ë
130         // http://www.din.or.jp/~ohzaki/perl.htm#JP_Match
131         $eucpre = $eucpost = '';
132         if (SOURCE_ENCODING == 'EUC-JP') {
133                 $eucpre = '(?<!\x8F)';
134                 // # JIS X 0208 ¤¬ 0ʸ»ú°Ê¾å³¤¤¤Æ # ASCII, SS2, SS3 ¤Þ¤¿¤Ï½ªÃ¼
135                 $eucpost = '(?=(?:[\xA1-\xFE][\xA1-\xFE])*(?:[\x00-\x7F\x8E\x8F]|\z))';
136         }
137         $quote_func = create_function('$str', 'return preg_quote($str, "/");');
138
139         // LANG=='ja'¤Ç¡¢mb_convert_kana¤¬»È¤¨¤ë¾ì¹ç¤Ïmb_convert_kana¤ò»ÈÍÑ
140         $convert_kana = create_function('$str, $option',
141                 (LANG == 'ja' && function_exists('mb_convert_kana')) ?
142                         'return mb_convert_kana($str, $option);' : 'return $str;'
143         );
144
145         foreach ($words as $word) {
146                 // ±Ñ¿ô»ú¤ÏȾ³Ñ,¥«¥¿¥«¥Ê¤ÏÁ´³Ñ,¤Ò¤é¤¬¤Ê¤Ï¥«¥¿¥«¥Ê¤Ë
147                 $word_zk = $convert_kana($word, 'aKCV');
148                 $chars = array();
149                 for ($pos = 0; $pos < mb_strlen($word_zk); $pos++) {
150                         $char = mb_substr($word_zk, $pos, 1);
151                         // $special : htmlspecialchars()¤òÄ̤¹¤«
152                         $arr = array($quote_func($special ? htmlspecialchars($char) : $char));
153                         if (strlen($char) == 1) {
154                                 // ±Ñ¿ô»ú
155                                 foreach (array(strtoupper($char), strtolower($char)) as $_char) {
156                                         if ($char != '&')
157                                                 $arr[] = $quote_func($_char);
158                                         $ord = ord($_char);
159                                         $arr[] = sprintf('&#(?:%d|x%x);', $ord, $ord); // ¼ÂÂλ²¾È
160                                         $arr[] = $quote_func($convert_kana($_char, 'A')); // Á´³Ñ
161                                 }
162                         } else {
163                                 // ¥Þ¥ë¥Á¥Ð¥¤¥Èʸ»ú
164                                 $arr[] = $quote_func($convert_kana($char, 'c')); // ¤Ò¤é¤¬¤Ê
165                                 $arr[] = $quote_func($convert_kana($char, 'k')); // È¾³Ñ¥«¥¿¥«¥Ê
166                         }
167                         $chars[] = '(?:' . join('|', array_unique($arr)) . ')';
168                 }
169                 $retval[$word] = $eucpre.join('', $chars) . $eucpost;
170         }
171         return $retval;
172 }
173
174 // ¸¡º÷
175 function do_search($word, $type = 'AND', $non_format = FALSE)
176 {
177         global $script, $whatsnew, $non_list, $search_non_list;
178         global $_msg_andresult, $_msg_orresult, $_msg_notfoundresult;
179         global $search_auth;
180
181         $retval = array();
182
183         $b_type = ($type == 'AND'); // AND:TRUE OR:FALSE
184         $keys = get_search_words(preg_split('/\s+/', $word, -1, PREG_SPLIT_NO_EMPTY));
185
186         $_pages = get_existpages();
187         $pages = array();
188
189         foreach ($_pages as $page) {
190                 if ($page == $whatsnew || (! $search_non_list && preg_match("/$non_list/", $page)))
191                         continue;
192
193                 // ¸¡º÷Âоݥڡ¼¥¸¤ÎÀ©¸Â¤ò¤«¤±¤ë¤«¤É¤¦¤« (¥Ú¡¼¥¸Ì¾¤ÏÀ©¸Â³°)
194                 if ($search_auth && ! check_readable($page, false, false)) {
195                         $source = get_source(); // ¸¡º÷Âоݥڡ¼¥¸ÆâÍƤò¶õ¤Ë¡£
196                 } else {
197                         $source = get_source($page);
198                 }
199                 if (! $non_format)
200                         array_unshift($source, $page); // ¥Ú¡¼¥¸Ì¾¤â¸¡º÷ÂоݤË
201
202                 $b_match = FALSE;
203                 foreach ($keys as $key) {
204                         $tmp     = preg_grep("/$key/", $source);
205                         $b_match = (! empty($tmp));
206                         if ($b_match xor $b_type) break;
207                 }
208                 if ($b_match) $pages[$page] = get_filetime($page);
209         }
210         if ($non_format) return array_keys($pages);
211
212         $r_word = rawurlencode($word);
213         $s_word = htmlspecialchars($word);
214         if (empty($pages))
215                 return str_replace('$1', $s_word, $_msg_notfoundresult);
216
217         ksort($pages);
218         $retval = "<ul>\n";
219         foreach ($pages as $page=>$time) {
220                 $r_page  = rawurlencode($page);
221                 $s_page  = htmlspecialchars($page);
222                 $passage = get_passage($time);
223                 $retval .= ' <li><a href="' . $script . '?cmd=read&amp;page=' .
224                         $r_page . '&amp;word=' . $r_word . '">' . $s_page .
225                         '</a>' . $passage . '</li>' . "\n";
226         }
227         $retval .= '</ul>' . "\n";
228
229         $retval .= str_replace('$1', $s_word, str_replace('$2', count($pages),
230                 str_replace('$3', count($_pages), $b_type ? $_msg_andresult : $_msg_orresult)));
231
232         return $retval;
233 }
234
235 // ¥×¥í¥°¥é¥à¤Ø¤Î°ú¿ô¤Î¥Á¥§¥Ã¥¯
236 function arg_check($str)
237 {
238         global $vars;
239         return isset($vars['cmd']) && (strpos($vars['cmd'], $str) === 0);
240 }
241
242 // ¥Ú¡¼¥¸Ì¾¤Î¥¨¥ó¥³¡¼¥É
243 function encode($key)
244 {
245         return ($key == '') ? '' : strtoupper(bin2hex($key));
246         // Equal to strtoupper(join('', unpack('H*0', $key)));
247         // But PHP 4.3.10 says 'Warning: unpack(): Type H: outside of string in ...'
248 }
249
250 // ¥Ú¡¼¥¸Ì¾¤Î¥Ç¥³¡¼¥É
251 function decode($key)
252 {
253         return ($key == '') ? '' : substr(pack('H*', '20202020' . $key), 4);
254 }
255
256 // [[ ]] ¤ò¼è¤ê½ü¤¯
257 function strip_bracket($str)
258 {
259         $match = array();
260         if (preg_match('/^\[\[(.*)\]\]$/', $str, $match)) {
261                 return $match[1];
262         } else {
263                 return $str;
264         }
265 }
266
267 // ¥Ú¡¼¥¸°ìÍ÷¤ÎºîÀ®
268 function page_list($pages, $cmd = 'read', $withfilename = FALSE)
269 {
270         global $script, $list_index;
271         global $_msg_symbol, $_msg_other;
272         global $pagereading_enable;
273
274         // ¥½¡¼¥È¥­¡¼¤ò·èÄꤹ¤ë¡£ ' ' < '[a-zA-Z]' < 'zz'¤È¤¤¤¦Á°Äó¡£
275         $symbol = ' ';
276         $other = 'zz';
277
278         $retval = '';
279
280         if($pagereading_enable) {
281                 mb_regex_encoding(SOURCE_ENCODING);
282                 $readings = get_readings($pages);
283         }
284
285         $list = $matches = array();
286         foreach($pages as $file=>$page) {
287                 $r_page  = rawurlencode($page);
288                 $s_page  = htmlspecialchars($page, ENT_QUOTES);
289                 $passage = get_pg_passage($page);
290
291                 $str = '   <li><a href="' .
292                         $script . '?cmd=' . $cmd . '&amp;page=' . $r_page .
293                         '">' . $s_page . '</a>' . $passage;
294
295                 if ($withfilename) {
296                         $s_file = htmlspecialchars($file);
297                         $str .= "\n" . '    <ul><li>' . $s_file . '</li></ul>' .
298                                 "\n" . '   ';
299                 }
300                 $str .= '</li>';
301
302                 // WARNING: Japanese code hard-wired
303                 if($pagereading_enable) {
304                         if(mb_ereg('^([A-Za-z])', mb_convert_kana($page, 'a'), $matches)) {
305                                 $head = $matches[1];
306                         } elseif(mb_ereg('^([¥¡-¥ö])', $readings[$page], $matches)) { // here
307                                 $head = $matches[1];
308                         } elseif (mb_ereg('^[ -~]|[^¤¡-¤ó°¡-ô¦]', $page)) { // and here
309                                 $head = $symbol;
310                         } else {
311                                 $head = $other;
312                         }
313                 } else {
314                         $head = (preg_match('/^([A-Za-z])/', $page, $matches)) ? $matches[1] :
315                                 (preg_match('/^([ -~])/', $page, $matches) ? $symbol : $other);
316                 }
317
318                 $list[$head][$page] = $str;
319         }
320         ksort($list);
321
322         $cnt = 0;
323         $arr_index = array();
324         $retval .= '<ul>' . "\n";
325         foreach ($list as $head=>$pages) {
326                 if ($head === $symbol) {
327                         $head = $_msg_symbol;
328                 } else if ($head === $other) {
329                         $head = $_msg_other;
330                 }
331
332                 if ($list_index) {
333                         ++$cnt;
334                         $arr_index[] = '<a id="top_' . $cnt .
335                                 '" href="#head_' . $cnt . '"><strong>' .
336                                 $head . '</strong></a>';
337                         $retval .= ' <li><a id="head_' . $cnt . '" href="#top_' . $cnt .
338                                 '"><strong>' . $head . '</strong></a>' . "\n" .
339                                 '  <ul>' . "\n";
340                 }
341                 ksort($pages);
342                 $retval .= join("\n", $pages);
343                 if ($list_index)
344                         $retval .= "\n  </ul>\n </li>\n";
345         }
346         $retval .= '</ul>' . "\n";
347         if ($list_index && $cnt > 0) {
348                 $top = array();
349                 while (! empty($arr_index))
350                         $top[] = join(' | ' . "\n", array_splice($arr_index, 0, 16)) . "\n";
351
352                 $retval = '<div id="top" style="text-align:center">' . "\n" .
353                         join('<br />', $top) . '</div>' . "\n" . $retval;
354         }
355         return $retval;
356 }
357
358 // Show text formatting rules
359 function catrule()
360 {
361         global $rule_page;
362
363         if (! is_page($rule_page)) {
364                 return '<p>Sorry, page \'' . htmlspecialchars($rule_page) .
365                         '\' unavailable.</p>';
366         } else {
367                 return convert_html(get_source($rule_page));
368         }
369 }
370
371 // Show (critical) error message
372 function die_message($msg)
373 {
374         $title = $page = 'Runtime error';
375         $body = <<<EOD
376 <h3>Runtime error</h3>
377 <strong>Error message : $msg</strong>
378 EOD;
379
380         pkwk_common_headers();
381         if(defined('SKIN_FILE') && file_exists(SKIN_FILE) && is_readable(SKIN_FILE)) {
382                 catbody($title, $page, $body);
383         } else {
384                 header('Content-Type: text/html; charset=euc-jp');
385                 print <<<EOD
386 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
387 <html>
388  <head>
389   <title>$title</title>
390   <meta http-equiv="content-type" content="text/html; charset=euc-jp">
391  </head>
392  <body>
393  $body
394  </body>
395 </html>
396 EOD;
397         }
398         exit;
399 }
400
401 // ¸½ºß»þ¹ï¤ò¥Þ¥¤¥¯¥íÉäǼèÆÀ
402 function getmicrotime()
403 {
404         list($usec, $sec) = explode(' ', microtime());
405         return ((float)$sec + (float)$usec);
406 }
407
408 // Æü»þ¤òÆÀ¤ë
409 function get_date($format, $timestamp = NULL)
410 {
411         $format = preg_replace('/(?<!\\\)T/',
412                 preg_replace('/(.)/', '\\\$1', ZONE), $format);
413
414         $time = ZONETIME + (($timestamp !== NULL) ? $timestamp : UTIME);
415
416         return date($format, $time);
417 }
418
419 // Æü»þʸ»úÎó¤òºî¤ë
420 function format_date($val, $paren = FALSE)
421 {
422         global $date_format, $time_format, $weeklabels;
423
424         $val += ZONETIME;
425
426         $date = date($date_format . ' ' . $time_format, $val) .
427                 ' ' . '(' . $weeklabels[date('w', $val)] . ')';
428
429         return $paren ? '(' . $date . ')' : $date;
430 }
431
432 // ·Ð²á»þ¹ïʸ»úÎó¤òºî¤ë
433 function get_passage($time, $paren = TRUE)
434 {
435         static $units = array('m'=>60, 'h'=>24, 'd'=>1);
436
437         $time = max(0, (UTIME - $time) / 60); // minutes
438
439         foreach ($units as $unit=>$card) {
440                 if ($time < $card) break;
441                 $time /= $card;
442         }
443         $time = floor($time) . $unit;
444
445         return $paren ? '(' . $time . ')' : $time;
446 }
447
448 // Hide <input type="(submit|button|image)"...>
449 function drop_submit($str)
450 {
451         return preg_replace('/<input([^>]+)type="(submit|button|image)"/i',
452                 '<input$1type="hidden"', $str);
453 }
454
455 // AutoLink¤Î¥Ñ¥¿¡¼¥ó¤òÀ¸À®¤¹¤ë
456 // thx for hirofummy
457 function get_autolink_pattern(& $pages)
458 {
459         global $WikiName, $autolink, $nowikiname;
460
461         $config = &new Config('AutoLink');
462         $config->read();
463         $ignorepages      = $config->get('IgnoreList');
464         $forceignorepages = $config->get('ForceIgnoreList');
465         unset($config);
466         $auto_pages = array_merge($ignorepages, $forceignorepages);
467
468         foreach ($pages as $page) {
469                 if (preg_match("/^$WikiName$/", $page) ?
470                     $nowikiname : strlen($page) >= $autolink)
471                         $auto_pages[] = $page;
472         }
473
474         if (empty($auto_pages))
475                 return $nowikiname ? '(?!)' : $WikiName;
476
477         $auto_pages = array_unique($auto_pages);
478         sort($auto_pages, SORT_STRING);
479
480         $auto_pages_a = array_values(preg_grep('/^[A-Z]+$/i', $auto_pages));
481         $auto_pages   = array_values(array_diff($auto_pages,  $auto_pages_a));
482
483         $result   = get_autolink_pattern_sub($auto_pages,   0, count($auto_pages),   0);
484         $result_a = get_autolink_pattern_sub($auto_pages_a, 0, count($auto_pages_a), 0);
485
486         return array($result, $result_a, $forceignorepages);
487 }
488
489 function get_autolink_pattern_sub(& $pages, $start, $end, $pos)
490 {
491         if ($end == 0) return '(?!)';
492
493         $result = '';
494         $count = $i = $j = 0;
495         $x = (mb_strlen($pages[$start]) <= $pos);
496         if ($x) ++$start;
497
498         for ($i = $start; $i < $end; $i = $j)
499         {
500                 $char = mb_substr($pages[$i], $pos, 1);
501                 for ($j = $i; $j < $end; $j++) {
502                         if (mb_substr($pages[$j], $pos, 1) != $char) break;
503                 }
504                 if ($i != $start) $result .= '|';
505                 if ($i >= ($j - 1)) {
506                         $result .= str_replace(' ', '\\ ', preg_quote(mb_substr($pages[$i], $pos), '/'));
507                 } else {
508                         $result .= str_replace(' ', '\\ ', preg_quote($char, '/')) .
509                                 get_autolink_pattern_sub($pages, $i, $j, $pos + 1);
510                 }
511                 ++$count;
512         }
513         if ($x || $count > 1) $result = '(?:' . $result . ')';
514         if ($x)               $result .= '?';
515
516         return $result;
517 }
518
519 // pukiwiki.php¥¹¥¯¥ê¥×¥È¤Îabsolute-uri¤òÀ¸À®
520 function get_script_uri($init_uri = '')
521 {
522         global $script_directory_index;
523         static $script;
524
525         if ($init_uri == '') {
526                 // Get
527                 if (isset($script)) return $script;
528
529                 // Set automatically
530                 $msg     = 'get_script_uri() failed: Please set $script at INI_FILE manually';
531
532                 $script  = (SERVER_PORT == 443 ? 'https://' : 'http://'); // scheme
533                 $script .= SERVER_NAME; // host
534                 $script .= (SERVER_PORT == 80 ? '' : ':' . SERVER_PORT);  // port
535
536                 // SCRIPT_NAME ¤¬'/'¤Ç»Ï¤Þ¤Ã¤Æ¤¤¤Ê¤¤¾ì¹ç(cgi¤Ê¤É) REQUEST_URI¤ò»È¤Ã¤Æ¤ß¤ë
537                 $path    = SCRIPT_NAME;
538                 if ($path{0} != '/') {
539                         if (! isset($_SERVER['REQUEST_URI']) || $_SERVER['REQUEST_URI']{0} != '/')
540                                 die_message($msg);
541
542                         // REQUEST_URI¤ò¥Ñ¡¼¥¹¤·¡¢pathÉôʬ¤À¤±¤ò¼è¤ê½Ð¤¹
543                         $parse_url = parse_url($script . $_SERVER['REQUEST_URI']);
544                         if (! isset($parse_url['path']) || $parse_url['path']{0} != '/')
545                                 die_message($msg);
546
547                         $path = $parse_url['path'];
548                 }
549                 $script .= $path;
550
551                 if (! is_url($script, TRUE) && php_sapi_name() == 'cgi')
552                         die_message($msg);
553                 unset($msg);
554
555         } else {
556                 // Set manually
557                 if (isset($script)) die_message('$script: Already init');
558                 if (! is_url($init_uri, TRUE)) die_message('$script: Invalid URI');
559                 $script = $init_uri;
560         }
561
562         // Cut filename or not
563         if (isset($script_directory_index)) {
564                 if (! file_exists($script_directory_index))
565                         die_message('Directory index file not found: ' .
566                                 htmlspecialchars($script_directory_index));
567                 $matches = array();
568                 if (preg_match('#^(.+/)' . preg_quote($script_directory_index, '#') . '$#',
569                         $script, $matches)) $script = $matches[1];
570         }
571
572         return $script;
573 }
574
575 /*
576 ÊÑ¿ôÆâ¤Înull(\0)¥Ð¥¤¥È¤òºï½ü¤¹¤ë
577 PHP¤Ïfopen("hoge.php\0.txt")¤Ç"hoge.php"¤ò³«¤¤¤Æ¤·¤Þ¤¦¤Ê¤É¤ÎÌäÂꤢ¤ê
578
579 http://ns1.php.gr.jp/pipermail/php-users/2003-January/012742.html
580 [PHP-users 12736] null byte attack
581
582 2003-05-16: magic quotes gpc¤ÎÉü¸µ½èÍý¤òÅý¹ç
583 2003-05-21: Ï¢ÁÛÇÛÎó¤Î¥­¡¼¤Ïbinary safe
584 */
585 function input_filter($param)
586 {
587         static $magic_quotes_gpc = NULL;
588         if ($magic_quotes_gpc === NULL)
589             $magic_quotes_gpc = get_magic_quotes_gpc();
590
591         if (is_array($param)) {
592                 return array_map('input_filter', $param);
593         } else {
594                 $result = str_replace("\0", '', $param);
595                 if ($magic_quotes_gpc) $result = stripslashes($result);
596                 return $result;
597         }
598 }
599
600 // Compat for 3rd party plugins. Remove this later
601 function sanitize($param) {
602         return input_filter($param);
603 }
604
605 // CSV·Á¼°¤Îʸ»úÎó¤òÇÛÎó¤Ë
606 function csv_explode($separator, $string)
607 {
608         $retval = $matches = array();
609
610         $_separator = preg_quote($separator, '/');
611         if (! preg_match_all('/("[^"]*(?:""[^"]*)*"|[^' . $_separator . ']*)' .
612             $_separator . '/', $string . $separator, $matches))
613                 return array();
614
615         foreach ($matches[1] as $str) {
616                 $len = strlen($str);
617                 if ($len > 1 && $str{0} == '"' && $str{$len - 1} == '"')
618                         $str = str_replace('""', '"', substr($str, 1, -1));
619                 $retval[] = $str;
620         }
621         return $retval;
622 }
623
624 // ÇÛÎó¤òCSV·Á¼°¤Îʸ»úÎó¤Ë
625 function csv_implode($glue, $pieces)
626 {
627         $_glue = ($glue != '') ? '\\' . $glue{0} : '';
628         $arr = array();
629         foreach ($pieces as $str) {
630                 if (ereg("[$_glue\"\n\r]", $str))
631                         $str = '"' . str_replace('"', '""', $str) . '"';
632                 $arr[] = $str;
633         }
634         return join($glue, $arr);
635 }
636
637 function pkwk_login($pass = '')
638 {
639         global $adminpass;
640
641         if ($pass != '' && md5($pass) == $adminpass) {
642                 return TRUE;
643         } else {
644                 sleep(2);       // Blocking brute force attack
645                 return FALSE;
646         }
647 }
648
649
650 //// Compat ////
651
652 // is_a --  Returns TRUE if the object is of this class or has this class as one of its parents
653 // (PHP 4 >= 4.2.0)
654 if (! function_exists('is_a'))
655 {
656         function is_a($class, $match)
657         {
658                 if (empty($class)) return FALSE; 
659
660                 $class = is_object($class) ? get_class($class) : $class;
661                 if (strtolower($class) == strtolower($match)) {
662                         return TRUE;
663                 } else {
664                         return is_a(get_parent_class($class), $match);  // Recurse
665                 }
666         }
667 }
668
669 // array_fill -- Fill an array with values
670 // (PHP 4 >= 4.2.0)
671 if (! function_exists('array_fill'))
672 {
673         function array_fill($start_index, $num, $value)
674         {
675                 $ret = array();
676                 while ($num-- > 0) $ret[$start_index++] = $value;
677                 return $ret;
678         }
679 }
680
681 // md5_file -- Calculates the md5 hash of a given filename
682 // (PHP 4 >= 4.2.0)
683 if (! function_exists('md5_file'))
684 {
685         function md5_file($filename)
686         {
687                 if (! file_exists($filename)) return FALSE;
688
689                 $fd = fopen($filename, 'rb');
690                 if ($fd === FALSE ) return FALSE;
691                 $data = fread($fd, filesize($filename));
692                 fclose($fd);
693                 return md5($data);
694         }
695 }
696 ?>