totoprayogo1916/codeigniter4-cart
最新稳定版本:2.0.5
Composer 安装命令:
composer require totoprayogo1916/codeigniter4-cart
包简介
CodeIgniter 4 Cart Library (Originally from CodeIgniter 3)
README 文档
README
The Cart Library originally from CodeIgniter 3.
Usage
Feel free to read the original: https://codeigniter.com/userguide3/libraries/cart.html
use Totoprayogo1916\CodeIgniter\Libraries\Cart; $cart = new Cart(); // Insert an array of values $cart->insert([ 'id' => 'sku_1234ABCD', 'qty' => 1, 'price' => '19.56', 'name' => 'T-Shirt', 'options' => ['Size' => 'L', 'Color' => 'Red'] ]); // Update an array of values $cart->update([ 'rowid' => '4166b0e7fc8446e81e16883e9a812db8', 'id' => 'sku_1234ABCD', 'qty' => 3, 'price' => '24.89', 'name' => 'T-Shirt', 'options' => ['Size' => 'L', 'Color' => 'Red'] ]); // Get the total items. $cart->total_items(); // Remove an item using its `rowId` $cart->remove('4166b0e7fc8446e81e16883e9a812db8'); // Clear the shopping cart $cart->destroy(); // Get the cart contents as an array $cart->contents();
统计信息
- 总下载量: 886
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-10-11