noverify icon indicating copy to clipboard operation
noverify copied to clipboard

Undefined variable (if...elseif statement)

Open panychek opened this issue 5 years ago • 0 comments

Code Example

<?php

$expr = rand(0, 1);
if ($expr) {
    $var = 'foo';

} elseif ($var = 'bar') {

}

echo $var;

Actual Behavior

<critical> INFO    undefined: Variable might have not been defined: var at /var/www/dev1/www/test.php:11
echo $var;
     ^^^^

Expected Behavior

No issues

panychek avatar Jan 20 '20 14:01 panychek