OSDN Git Service

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