Operator Php

$finished = false;
if ($finished == false) {
    print 'Not done yet!';
}
if (! $finished) {
    print 'Not done yet!';
}
?>