本文整理汇总了PHP中WishList::createCartFromContainer方法的典型用法代码示例。如果您正苦于以下问题:PHP WishList::createCartFromContainer方法的具体用法?PHP WishList::createCartFromContainer怎么用?PHP WishList::createCartFromContainer使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类WishList
的用法示例。
在下文中一共展示了WishList::createCartFromContainer方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: findProductByName
{
return $this->items;
}
public function findProductByName($name)
{
$itemKey = null;
foreach ($this->items as $key => $item) {
if ($name == $item->getName()) {
$itemKey = $key + 1;
echo "{$name} is number {$itemKey} in the array";
break;
}
}
if ($itemKey == null) {
throw new Exception("Item was not found in cart");
}
}
}
$describer = new ItemDescriber();
$kramericaTV = new Television("Giant TV", "Kramerica", 3900.9, "LED", "100in");
$shirt = new Clothing("Button Down Shirt", "J Peterman", '29.88', "shirt", "medium", "red", "male");
$Wishlist = new WishList();
$Wishlist->addProduct($kramericaTV);
$Wishlist->addProduct($shirt);
$ShoppingCart = $Wishlist->createCartFromContainer($Wishlist);
$Wishlist->provideDescription();
$ShoppingCart->provideDescription();
?>
</p>
</body>
</html>
示例2: getAllProducts
}
public function getAllProducts()
{
return $this->products;
}
public function findProductByName($name)
{
$productKey = null;
foreach ($this->products as $key => $product) {
if ($product->name == $name) {
$productKey = $key + 1;
return $product . ' is number ' . $productKey . ' in the Wish List. <br />';
} else {
throw new Exception("No product with given name found in Wish List");
}
}
}
}
$itemDescriber = new ItemDescriber();
$hoodie = new Clothing("Hoodie", "Nike", 19.99, "large", "red", "shirt", "male");
$plasma = new Television("Plasma", "Sony", 1000.0, plasma, "50in");
$wishList = new WishList();
$wishList->addProduct($hoodie);
$wishList->addProduct($plasma);
$shoppingCart = $wishList->createCartFromContainer($wishList);
$wishList->provideDescription();
$shoppingCart->provideDescription();
?>
</p>
</body>
</html>