有人可以幫助我如何在PHP中實現嵌套的while循環嗎?我們如何在PHP中實現嵌套的while循環?
請舉一些例子,它將不勝感激。我在國內同時獲得問題:
while ($record = db_fetch_object($username))
{
$userArray[] = $record->uid; //print "waheed----";
while($recordfile = db_fetch_Object($userfile))
{
print "waheed";
$userArray [$record->uid][] = $recordfile->fid;
}
}
'while($ something){while($ anotherthing){do_stuff(); }}' - 這不起作用?你想達到什麼目的?你試過什麼了? – Piskvor 2011-06-01 11:21:23
問題不清楚,你能指定你到底需要什麼嗎? – Headshota 2011-06-01 11:21:56
改爲使用'for'循環 – diEcho 2011-06-01 11:22:15