while loop in php with assignment operator

前端 未结 7 735
闹比i
闹比i 2020-12-17 10:41

the code I\'m looking at does this...

while ($info=mysql_fetch_array($data_jurisdiction))
{
//some stuff
}

I\'m wondering what does this wh

7条回答
  •  清歌不尽
    2020-12-17 11:10

    as long as $info gets assigned a value other than false, this code will execute?

    Yes.

提交回复
热议问题