我正在尝试制作期刊类型的应用程序。由于我希望它按日期排序,因此我将要提取的日期作为键,然后将文本作为数组中的值。我想要做的只是显示一次日期,即使有两个匹配的键。
所以在下面的例子中,理想情况下它会返回:
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