Expression¶
In PHP, an expression is a combination of one or more variables, operators, constants, and functions that evaluates to a single value. Expressions can be simple or complex, depending on the operations involved.
<?php
// one generic expression
$a = A + cos($b);
?>