totoprayogo1916 / codeigniter4-cart
CodeIgniter 4 购物车库(最初来自CodeIgniter 3)
2.0.5
2024-02-20 03:25 UTC
Requires
Requires (Dev)
- codeigniter4/devkit: ^1.1
README
购物车库最初来自CodeIgniter 3。
用法
请随意阅读原文:https://codeigniter.php.ac.cn/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();