问题描述
|
我知道这是简单的术语,但是我无法通过Google搜索得到它……当被赋值的变量的值通过时,这叫什么?
PHP中的示例:
<?PHP
if($bob = 5){ echo \'The assignment came through as a truthy value!,bob Now equals \'.$bob.\'!\'; }
if($bob = false){ echo \'The assignment occurred again,but the value of the assignment is the value \"false\",so this if block will not be executed!. Bob Now equals \'.$bob.\'!\'; }
echo \' Finally,bob is a: \'.(string) $bob;
?>
JavaScript中的示例:
bob = bob || {};
解决方法
在第一个示例中,您将赋值用作表达式;也就是说,赋值语句返回分配的值(此行为是错误的常见来源;通常人们不小心使用
=
而非==
)。
第二个示例使用||
运算符的短路行为。