Sign in
apache
/
netbeans
/
419f65eb0cccf624032c1c4925bf8d58069043ae
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
parser
/
issue211165_04.php
blob: 6b5955f40a4ba8218c2521d2f77fe8b27aabc2a2 [
file
]
<?
php
if
(
isset
(
$_POST
[
'submit_step_1'
])
&&
())
{
//<- there is an obvious mistake here
echo
"I am wrong condition because of empty brackets"
;
}
else
{
echo
"I am part of code that won't be reached because of wrong condition in if statement"
;
}
?>