PHP避免嵌入式賦值


在程式中避免下面範例中的嵌入式賦值:
不使用這樣的方式:

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