PHP - Expression statement: ;

Expression statement is evaluating the expression, then make an evaluation and program execution continues with the next statement.

;

Description

expression ;
Used keywords: ;

Input

  • expression -

Examples

PHP

 $j = 3;
 $ret = $j<$i;
 $x = 10 * 5 -$j;

PHP

Other pieces of example codes:
$c=true;
$i = $i-5;
$y = (double)$x / 0xa;
$z = ($x * 2 / $y +5);
$z = ($x * 2 / $y +5);
$a1 = false && false;
Expression statement in another programming language:
Languages: en hu cz sk