View file application/libraries/Scaffold/extensions/functions/phase_02/calc.php
<?php
/**
* Parses the input as PHP. Used for perform math operations.
*
* @param $math
* @return string
*/
function Scaffold_calc($expression)
{
$expression = str_replace( array('px','em'), '', $expression);
$E = error_reporting(0);
$result = eval("return $expression;");
error_reporting($E);
return ($result) ? $result : false;
}