10 * Smarty {math} function plugin
14 * Purpose: handle math computations in template<br>
15 * @link http://smarty.php.net/manual/en/language.function.math.php {math}
16 * (Smarty online manual)
17 * @author Monte Ohrt <monte at ohrt dot com>
22 function smarty_function_math($params, &$smarty)
24 // be sure equation parameter is present
25 if (empty($params['equation'])) {
26 $smarty->trigger_error("math: missing equation parameter");
30 // strip out backticks, not necessary for math
31 $equation = str_replace('`','',$params['equation']);
33 // make sure parenthesis are balanced
34 if (substr_count($equation,"(") != substr_count($equation,")")) {
35 $smarty->trigger_error("math: unbalanced parenthesis");
39 // match all vars in equation, make sure all are passed
40 preg_match_all("!(?:0x[a-fA-F0-9]+)|([a-zA-Z][a-zA-Z0-9_]+)!",$equation, $match);
41 $allowed_funcs = array('int','abs','ceil','cos','exp','floor','log','log10',
42 'max','min','pi','pow','rand','round','sin','sqrt','srand','tan');
44 foreach($match[1] as $curr_var) {
45 if ($curr_var && !in_array($curr_var, array_keys($params)) && !in_array($curr_var, $allowed_funcs)) {
46 $smarty->trigger_error("math: function call $curr_var not allowed");
51 foreach($params as $key => $val) {
52 if ($key != "equation" && $key != "format" && $key != "assign") {
53 // make sure value is not empty
54 if (strlen($val)==0) {
55 $smarty->trigger_error("math: parameter $key is empty");
58 if (!is_numeric($val)) {
59 $smarty->trigger_error("math: parameter $key: is not numeric");
62 $equation = preg_replace("/\b$key\b/", " \$params['$key'] ", $equation);
66 eval("\$smarty_math_result = ".$equation.";");
68 if (empty($params['format'])) {
69 if (empty($params['assign'])) {
70 return $smarty_math_result;
72 $smarty->assign($params['assign'],$smarty_math_result);
75 if (empty($params['assign'])){
76 printf($params['format'],$smarty_math_result);
78 $smarty->assign($params['assign'],sprintf($params['format'],$smarty_math_result));
83 /* vim: set expandtab: */
This page took 1.629445 seconds and 4 git commands to generate.