本文整理汇总了PHP中Illuminate\Session\SessionManager::push方法的典型用法代码示例。如果您正苦于以下问题:PHP SessionManager::push方法的具体用法?PHP SessionManager::push怎么用?PHP SessionManager::push使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Illuminate\Session\SessionManager
的用法示例。
在下文中一共展示了SessionManager::push方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: add
/**
* Add a product to the cart, if the product id already exists then increment its quantity
* @param integer $id
* @param string $name
* @param integer $price
* @param integer $quantity
* @param array $options
* @return array
*/
public function add($id, $name = '', $price = 0, $quantity = 1, array $options = [])
{
$cartItems = $this->getCartSession();
foreach ($cartItems as &$cartItem) {
if ($cartItem['id'] == $id) {
$cartItem['quantity'] = $cartItem['quantity'] + $quantity;
$this->session->set(config('sescart.session_name'), $cartItems);
return $cartItem;
}
}
$newItem = ['id' => $id, 'name' => $name, 'price' => $price, 'quantity' => $quantity, 'options' => $options];
$this->session->push(config('sescart.session_name'), $newItem);
return $newItem;
}