我正在嘗試創建日記型應用程序。因爲我希望按日期排序,所以我把我拉的日期作爲關鍵字,然後把文本作爲數組中的值。我想要做的只是顯示一次日期,即使有兩個匹配的鍵。如何僅在未顯示數組密鑰時才顯示數組密鑰
所以在下面的例子中,將理想的回報:
1/2/2013
entry 1
entry 2
1/5/2013
this is another day
從此輸入:
$array = array('1/2/2013'=>'entry 1', '1/2/2013'=>'entry 2',
'1/5/2013'=>'this is another day');
//loop through array and echo the date and value, but only echo date if havent already
他可以改變輸入嗎? – zod
@zod - 也許是一個問題,儘管引用:「我把日期,拉作爲關鍵,然後文本作爲數組中的值'聽起來像它可以 – AlexP