// Procedural Shopping Cart
$product = array(
'id' => 5634,
'name' => 'Widget',
'price' => 12.99
);
$customer = array(
'id' => 8934512,
'email' => '
[email protected]'
);
$cart = array();
function add_item_to_cart($cart, $item) { /* ... */ }
function complete_purchase_of_cart($cart, $customer) { /* ... */ }
$cart = add_item_to_cart($cart, $item);
$order = complete_purchase_of_cart($cart, $customer);