upk 
私の作品ではありませんが、calc.inc.php というプラグインがあります。
参考まで。本当は、コメントに書きたかったんですが、制限があるので、
ここに書いておきます。読んだら、消しておいて下さい。
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| <?php
/////////////////////////////////////////////////
// PukiWiki - Yet another WikiWikiWeb clone.
//
// $Id$
//
function plugin_calc_inline()
{
if (func_num_args() < 1)
{
return FALSE;
}
$args = func_get_args();
$exp = $args[0];
$dot = is_numeric($args[1]) ? $args[1] : 0;
$comma = $args[2] == 'comma' ? ',' : '';
if (!preg_match('/^[\d\.\s\+\-\*\/%()]*$/', $exp))
{
return FALSE;
}
$result = 0;
eval("\$result = $exp;");
return number_format((float) $result, $dot, '.', $comma);
}
?>
|