플러그인 31: 표현식 값 구하기
<?php // Plug-in 31: Evaluate Expression
// This is an executable example with additional code supplied
// To obtain just the plug-ins please click on the Download link
echo "<font face='Courier New'><pre>";
$s = "TAN(64)";
echo "$s\t\t\t= " . PIPHP_EvaluateExpression($s) . "
";
$s = "sqrt(77.3) / 99";
echo "$s\t\t= " . PIPHP_EvaluateExpression($s) . "
";
$s = "1 + 2 / 3 * 4 - 5";
echo "$s\t= " . PIPHP_EvaluateExpression($s) . "
";
$s = "log(100)";
echo "$s\t\t= " . PIPHP_EvaluateExpression($s) . "
";
$s = "pi()";
echo "$s\t\t\t= " . PIPHP_EvaluateExpression($s) . "
";
function PIPHP_EvaluateExpression($expr)
{
// Plug-in 31: Evaluate Expression
//
// This plug-in accepts a string containing an arithmetic
// expression and returns the result of evaluating it.
// Over 20 functions are also supported. The argument
// required is:
//
// $expr: The arithmetic expression
$f1 = array ('abs', 'acos', 'acosh', 'asin', 'asinh',
'atan', 'atan2', 'atanh', 'cos', 'cosh',
'exp', 'expm1', 'log', 'log10', 'log1p',
'pi', 'pow', 'sin', 'sinh', 'sqrt',
'tan', 'tanh');
$f2 = array ('!01!', '!02!', '!03!', '!04!', '!05!',
'!06!', '!07!', '!08!', '!09!', '!10!',
'!11!', '!12!', '!13!', '!14!', '!15!',
'!16!', '!17!', '!18!', '!19!', '!20!',
'!21!', '!22!');
$expr = strtolower($expr);
$expr = str_replace($f1, $f2, $expr);
$expr = preg_replace("/[^\d\+\*\/\-\.(),! ]/", '', $expr);
$expr = str_replace($f2, $f1, $expr);
// Uncomment the line below to see the sanitized expression
// echo "$expr<br />
";
return eval("return $expr;");
}
?>
플러그인 설명:
플러그인은 수학적 표현식을 나타내는 문자열을 적용하고 매개변수가 필요한 표현식의 결과를 반환합니다.
$expr 수학 표현식을 포함하는 문자열
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Access Request, Session and Application in Struts2If we want to use request, Session and application in JSP, what should we do? We can obtain Map type objects such as Req...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.