-1

不知道为什么我的日志中出现此错误。

PHP 注意:未定义变量:customerName 这里是第 74 行:$arrOrderDetails = $purchaseOrder->load($customerName);

这个即时通讯从另一个类的实例返回“$customerName”是代码:

public function load($customerName){
$orderDetails = array();
//Adding first order detail
$orderData = array
    ('order_id' => 1, 
    'customer_name' => 'Lancaster Landscapes',
    'description' => 'Golf Balls-Titlest DT Solo', 
    'quantity' => 13,
    'price' => 33,
    'total' => 432.25
    );
$orderDetail = new OrderDetail($orderData);
$array_push($orderDetails, 1, $orderDetail);

return $orderDetails;

}

我仍然会向数组中添加更多元素。有什么建议么?

4

1 回答 1

0

它只是一个通知,也不会破坏代码,但是如果你想清理它,在分配 $customername 之前你包括

 $customername='';

该通知应该消失

于 2012-11-15T00:26:19.617 回答