本文整理汇总了PHP中ShoppingCart::addItem方法的典型用法代码示例。如果您正苦于以下问题:PHP ShoppingCart::addItem方法的具体用法?PHP ShoppingCart::addItem怎么用?PHP ShoppingCart::addItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ShoppingCart
的用法示例。
在下文中一共展示了ShoppingCart::addItem方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: createCartWithItems
/**
* Create a {@link ShoppingCart} object and give
* it some test {@link OrderItem} objects.
*
* @return object ShoppingCart
*/
public static function createCartWithItems()
{
$item1 = new ProductVariation_OrderItem(array('ProductVariationID' => 2, 'Version' => 1));
$item2 = new ProductVariation_OrderItem(array('ProductVariationID' => 1, 'Version' => 1));
$cart = new ShoppingCart();
$cart->addItem(2, $item1);
$cart->addItem(1, $item2);
return $cart;
}
示例2: __construct
//method 'gets' how much total of all items with tax
$afterTax = $this->getTaxAmount() + $this->getCostBeforeTax();
return $afterTax;
}
}
class Item
{
// creates item class
public $name;
public $price;
public function __construct($name, $price)
{
// construct allows to set name and price for each item
$this->name = $name;
$this->price = $price;
}
}
$cart = new ShoppingCart();
$cart->addItem(new Item('Cheap Book', 2.99));
$cart->addItem(new Item('Expensive Book', 24.99));
$cart->addItem(new Item('Movie', 12.99));
$cart->addItem(new Item('Video Game', 59.99));
echo "<p>Total cost before tax: \${$cart->getCostBeforeTax()}</p>";
echo "<p>Tax amount: \${$cart->getTaxAmount()}</p>";
echo "<p>Total cost after tax: \${$cart->getCostAfterTax()}</p>";
?>
</p>
</body>
</html>
示例3: testGetShippingAmountWillCallShippingMethodToCalculatesTheShippingAmount
/**
* @testdox ShoppingCart::getShippingAmount() will call ShippingMethod::getShippingAmount() to calculates the shipping amount.
*/
public function testGetShippingAmountWillCallShippingMethodToCalculatesTheShippingAmount()
{
$cart = new ShoppingCart();
$cart->addItem(new Product(123, 'item 0', 100, 1, 2, 15, 30), 2);
$shippingFrom = '14400000';
$shippingTo = '01000000';
$shippingMethod = $this->getMock('\\Neto\\Commerce\\Shipping\\ShippingMethod', array('getShippingAmount'));
$shippingMethod->expects($this->at(0))->method('getShippingAmount')->with($cart, $shippingFrom, $shippingTo);
$cart->getShippingAmount($shippingMethod, $shippingFrom, $shippingTo);
}
示例4: __autoload
<?php
function __autoload($class)
{
require_once '../class.' . $class . ".php";
}
$book = new Book('PHP Object-Oriented Solutions', 300);
$cart = new ShoppingCart();
$cart->addItem($book);
$movie = new Dvd('Gladiator', '120 minutes');
$cart->addItem($movie);