php SESSION class (shopping cart class)_PHP tutorial
SESSION is a commonly used thing in php. We often use it to record global page information. If the user logs in, background management, and another commonly used one is the shopping cart class. Let me introduce it to you. one time.
Regarding the application of SESSION in PHP, it is essential and one of the most important functions. SESSION is called "session" in network applications. We usually understand it as storing the information required for a specific user session. In this way, When the user jumps between website pages, the stored SESSION value is not lost, but survives throughout the user session. In layman's terms, when user A goes online, an ID (a) value will be created and saved. If your ID (A) value is not logged out, the website will remember your ID (A) the next time you go online. ) value, at this time you can call your ID (A) value online. For example, you are welcome to visit your ID (A) value again.
It is very simple to apply the SESSION value in PHP. Just enter session_start() at the top to start the session. Then you can use SESSION. This is just an application method for small websites. In fact, SESSION itself is also There are many attributes, such as SESSION cycle, calling SESSION, SESSION data validity period, SESSION save, SESSION logout, etc. If you have these attributes, it seems to be a relatively standardized SESSION application session.
The following is a complete Session class, which integrates the most basic attribute values of Session. Among them, opening, closing and cleaning are in line with PHP programming specifications, which is also a good habit. A small note, if the website does not use the Session class extensively, there is basically no need to use the SESSION class.
代码如下 | 复制代码 |
|
Let’s look at another php session shopping cart class
The code is as follows
|
Copy code | ||||
public function Cart() {
if(!isset($_SESSION['cart'])){
$_SESSION['cart'] = array();
}
}<🎜> <🎜> /*
Add product
param int $id product primary key
String $name product name
float $price product price
int $num Shopping quantity
*/
public function addItem($id,$name,$price,$num,$img) {
//If the product already exists, add its quantity directly
if (isset($_SESSION['cart'][$id])) {
$this->incNum($id,$num);
Return;
}
$item = array();
$item['id'] = $id;
$item['name'] = $name;
$item['price'] = $price;
$item['num'] = $num;
$item['img'] = $img;
$_SESSION['cart'][$id] = $item;
} /*
Modify the quantity of items in the shopping cart
int $id product primary key
int $num is the modified quantity of a certain product, that is, directly replace a certain product
The quantity is changed to $num
*/
public function modNum($id,$num=1) {
if (!isset($_SESSION['cart'][$id])) {
Return false;
}
$_SESSION['cart'][$id]['num'] = $num;
} /*
Product quantity +1
*/
public function incNum($id,$num=1) {
if (isset($_SESSION['cart'][$id])) {
$_SESSION['cart'][$id]['num'] += $num;
}
} /*
Product quantity-1
*/
public function decNum($id,$num=1) {
if (isset($_SESSION['cart'][$id])) {
$_SESSION['cart'][$id]['num'] -= $num;
} //If the quantity is 0 after reduction, delete this product
if ($_SESSION['cart'][$id]['num'] <1) {
$this->delItem($id);
}
} /*
Delete product
*/
public function delItem($id) {
unset($_SESSION['cart'][$id]);
}
/*
Get a single product
*/
public function getItem($id) {
return $_SESSION['cart'][$id];
} /*
Check the types of items in the shopping cart
*/
public function getCnt() {
return count($_SESSION['cart']);
}
/*
Query the number of items in the shopping cart
*/
public function getNum(){
if ($this->getCnt() == 0) {
//The number of species is 0, and the number is also 0
Return 0;
} $sum = 0;
$data = $_SESSION['cart'];
foreach ($data as $item) {
$sum += $item['num'];
}
return $sum;
} /*
Total amount of items in shopping cart
*/
public function getPrice() {
//Quantity is 0, price is 0
if ($this->getCnt() == 0) {
Return 0;
}
$price = 0.00;
foreach ($this->items as $item) {
$price += $item['num'] * $item['price'];
}
return sprintf("%01.2f", $price);
} /*
Clear shopping cart
*/
public function clear() {
$_SESSION['cart'] = array();
}
}

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.
