I have two classes, a Customer class, and a Cart class. Let me start by using a basic example:
class Customer {
public $cart // Cart class
public $shipping_address // Address class
public function __construct(){
$this->cart = new Cart();
$this->cart->setCustomerReference($this);
}
}
class Cart
public $customer;
public function setCustReference(Customer &$customer){
$this->customer = $customer;
}
}
I have functions in the cart class that calculates the order totals (subtotal, shipping, tax, etc), but in order to calculate tax, for example, I need to see the shipping address. I thought I would be able to pass a reference of the Customer class to the Cart when the cart is initialized.
It works the way I expected, but when I call print_r on the original Customer class (not the reference) from my code, in the output it says "[cart] => Cart Object ([customer:public] => Customer Object *RECURSION*)". Is this the wrong way for me to implement this? Is there a better way, or is that recursion message just letting me know for printing to the browser reasons?