您好我需要一些帮助来循环一系列项目。 我重复的部分需要循环才能从数据库中获取多个项目。在这个阶段,我只发票一个项目,因为用户通常购买一些,所以我需要运行一个foreach声明,我认为。请原谅我的无知和缺乏理解,我尝试过一系列事情,但他们似乎没有工作
#include <stdio.h>
int main()
{
int num=0, i=2, is_prime=1;
printf("please enter a number\n");
scanf("%d", &num);
while (i*i<=num)
{
if ((num%i) == 0)
{
printf("no prime\n");
is_prime = 0;
break;
}
i++;
}
if(is_prime) {
printf("prime\n");
}
}
我需要循环的部分如下:
$json1 = array(
'Date' => $currentDate->format('Y-m-d\TH:i:s'),
'Customer' => array(
'DisplayID' => $phone
),
'CustomerPurchaseOrderNumber' => $ordID,
'Freight' => '0',
'BalanceDueAmount' => '0.0',
'Status' => 'Closed',
'Lines' => /*$orderDetails,*/ array(
array(
'ShipQuantity' => $ShowDetails['quantity'],
'UnitPrice' => $ShowDetails['unit_price'],
'Total' => $ShowDetails['total_price'],
'Item' => array(
'UID' => $productUID,//itemuid(609400gmkit)
),
'Description' => $productTitle. ' ' .$sizeTitle. ' '
.$colorTitle,
'TaxCode' => array(
'UID' => '7d1f2e99-ffe0-4463-9c29-
61d078b392d3'//taxcodeuid(GST)
)
)
),
'Freight' => $shippingprice,//if dg then $10 otherwise $0 unless below
$100
'ShippingMethod' => $ShippingMethod,// if dg the 'MyFreight' otherwise
'transdirect'
);