> PHP开发规范手册 > 4.2.9 true/false和0/1判断

在程序中避免下面例子中的嵌入式赋值:
不使用这样的方式:

while ($a != ($c = getchar())){
    process the character
}