Constant expression evaluation ============================== Initializers for constants, properties, parameters, etc. have limited support for expressions. For example: ```php evaluateSilently($someExpr); } catch (ConstExprEvaluationException $e) { // Either the expression contains unsupported expression types, // or an error occurred during evaluation } ``` Error handling -------------- The constant evaluator provides two methods, `evaluateDirectly()` and `evaluateSilently()`, which differ in error behavior. `evaluateDirectly()` will evaluate the expression as PHP would, including any generated warnings or Errors. `evaluateSilently()` will instead convert warnings and Errors into a `ConstExprEvaluationException`. For example: ```php evaluateDirectly($expr)); // float(INF) // Warning: Division by zero try { $evaluator->evaluateSilently($expr); } catch (ConstExprEvaluationException $e) { var_dump($e->getPrevious()->getMessage()); // Division by zero } ``` For the purposes of static analysis, you will likely want to use `evaluateSilently()` and leave erroring expressions unevaluated. Unsupported expressions and evaluator fallback ---------------------------------------------- The constant expression evaluator supports all expression types that are permitted in constant expressions, apart from the following: * `Scalar\MagicConst\*` * `Expr\ConstFetch` (only null/false/true are handled) * `Expr\ClassConstFetch` Handling these expression types requires non-local information, such as which global constants are defined. By default, the evaluator will throw a `ConstExprEvaluationException` when it encounters an unsupported expression type. It is possible to override this behavior and support resolution for these expression types by specifying an evaluation fallback function: ```php getType()} cannot be evaluated"); }); try { $evalutator->evaluateSilently($someExpr); } catch (ConstExprEvaluationException $e) { // Handle exception } ``` Implementers are advised to ensure that evaluation of indirect constant references cannot lead to infinite recursion. For example, the following code could lead to infinite recursion if constant lookup is implemented naively. ```php