<?php function testBooleanOperators($flag, $exp) { return $flag || $exp; } var_dump(testBooleanOperators(true, 'abc')); var_dump(testBooleanOperators('I am truthy!', 'abc')); var_dump(testBooleanOperators(false, 'abc')); var_dump(testBooleanOperators(false, null));
You have javascript disabled. You will not be able to edit any code.