我有一个多维订单和用户数组。此数组在过去4天内循环执行订单,并显示数据库中的日期和总计。但是,当您看到用户在特定日期内数据库中没有销售时,数组只会遍历这些销售并且表格未完成。我想要的是回显' 0' 在无销售的那一天,并在正确的列中回显正确的日期和总数
Traceback (most recent call last):
File "<pyshell#0>", line 1, in <module>
import pygame
File "C:\Users\Liam Laptop\AppData\Local\Programs\Python\Python35-32\lib\site-packages\pygame\__init__.py", line 141, in <module>
from pygame.base import *
ImportError: No module named 'pygame.base'
(第一行是标题)
foreach ($orders[$x] as $order) {
echo $order->order_date.'->'.$order->total
}
所需格式:(第一行是标题)
25-10-2016 26-10-2016 27-10-2016 28-10-2016 29-10-2016
25-10-2016->100 26-10-2016->50 27-10-2016->30 28-10-2016->100 29-10-2016->150
25-10-2016->100 27-10-2016->30 28-10-2016->100 29-10-2016->150
26-10-2016->50 27-10-2016->30