第一個值我有救了用戶步驟的PHP數組:獲得來自陣列
array(
'step_1' => 1,
'step_2' => 1,
'step_3' => 0,
'step_4' => 0,
'step_5' => 0
);
所以,我的用戶做step_1和step_2,但他沒有做其他步驟。 現在,我想要得到他沒有做的第一步的名字,在這個例子中它是「step_3」。
但是,如果陣列看起來是:
array(
'step_1' => 1,
'step_2' => 1,
'step_3' => 1,
'step_4' => 1,
'step_5' => 0
);
我想「step_5」,比我知道,用戶不做step_5,我可以,exapmle將用戶重定向到指定頁面。我怎麼才能得到它?
關聯數組沒有順序。建議使用索引數組 –
@andrewsi,我沒有任何想法:( –
或者你可以遍歷數組中的值 – andrewsi