1
我使用mysql_fetch_array返回值的數組。php - 查找數組中的下一行元素值
在while循環中,我需要對數組的下一個元素執行if條件。
E.g
if next($row) == 'test'
{
...
}
的事情是「下一個($行)」將返回我的數組中的下一個元素的索引。我想測試下一個$行(「名稱」)。
if next($row("name")) == 'test'
{
...
} //this code is incorrect
有沒有辦法在php中這樣做?
非常感謝您的幫助:)
的這個重複的問題:http://stackoverflow.com/questions/396519/access-php-array-元件上帶有一個功能 – Tom