1 evalmath.inc | EvalMath::funcs() |
File
- core/
includes/ evalmath.inc, line 159
Class
Code
function funcs() {
$output = array();
foreach ($this->f as $fnn => $dat) {
$output[] = $fnn . '(' . implode(',', $dat['args']) . ')';
};
return $output;
}