有没有另一种方法来编写这个数组循环代码。当我运行我似乎无法理解的代码时,我似乎收到了服务器 500 错误。它特别出现在 array_push 行上。任何有关在不使用 array_push 的情况下重写语句的帮助指导都会对我有所帮助。
$PaymentOrderItems = array();
foreach($resultBookings->getRecords() as $key=>$record_row) {
$Item = array(
'name' => $record_row->getField('Start_date'),
'desc' => $record_row->getField('Description'),
'amt' => $record_row->getField('Price_per_week'),
);
array_push($PaymentOrderItems, $Item); //this line is the culprit - if I comment this this out
}
非常感谢