我得到了这种格式的数组。
Date Employee Notes
2013-03-08 ABC Notes of ABC on 08-03-2013
2013-03-08 PQR Notes of PQR on 08-03-2013
2013-03-08 XYZ Notes of XYZ on 08-03-2013
2013-03-09 ABC Notes of ABC on 09-03-2013
2013-03-09 PQR Notes of PQR on 09-03-2013
2013-03-09 XYZ Notes of XYZ on 09-03-2013
我想要这种格式的结果数组
Date Employee Notes
2013-03-08 ABC Notes of ABC on 08-03-2013
PQR Notes of PQR on 08-03-2013
XYZ Notes of XYZ on 08-03-2013
2013-03-09 ABC Notes of ABC on 09-03-2013
PQR Notes of PQR on 09-03-2013
XYZ Notes of XYZ on 09-03-2013
那么我怎样才能编写我的 php 代码来获得这样的结果呢?这是一个二维数组,我使用 foreach 循环来显示这样的。
有人可以帮我吗?