search

PHP购物车类代码

在开发网络购物网站的时候,购物车类是购物网站的必备模块。总结一个php实现购物车类。实现了购物车中的商品的添加,修改,删除,列表,以及各种计算的相关功能。采用了php单一类的原理,安全高效,简单易扩展。

class Cart{<br />	static protected $ins; //实例变量<br />	protected $item=array(); //放商品容器<br />	//禁止外部调用<br />	final protected function __construct(){}<br />	//禁止克隆<br />	final protected function __clone(){}<br />	//类内部实例化<br />	static protected function Getins(){<br />		if(!(self::$ins instanceof self)){self::$ins=new self();}return self::$ins;<br />	}<br />	//为了能使商品跨页面保存,把对象放入session里<br />	public function Getcat(){<br />		if(!isset($_SESSION['cat'])||!($_SESSION['cat'] instanceof self)){<br />			$_SESSION['cat']=self::Getins();<br />		}<br />		return $_SESSION['cat'];<br />	}<br />	//入列时的检验,是否在$item里存在<br />	public function Initem($goods_id){<br />		if($this->Gettype()==0){<br />			return false;<br />		}<br />		//这里检验商品是否相同是通过goods_id来检测,并未通过商品名称name来检测,具体情况可做修改<br />		if(!(array_key_exists($goods_id,$this->item))){<br />			return false;<br />		}else{<br />			return $this->item[$goods_id]['num']; //返回此商品个数<br />		}<br />	}<br />	//添加一个商品<br />	public function Additem($goods_id,$name,$num,$price){<br />		if($this->Initem($goods_id)!=false){<br />			$this->item[$goods_id]['num']+=$num;<br />			return;<br />		}<br />		$this->item[$goods_id]=array(); //一个商品为一个数组<br />		$this->item[$goods_id]['num']=$num; //这一个商品的购买数量<br />		$this->item[$goods_id]['name']=$name; //商品名字<br />		$this->item[$goods_id]['price']=$price; //商品单价<br />	}<br />	//减少一个商品<br />	public function Reduceitem($goods_id,$num){<br />		if($this->Initem($goods_id)==false){<br />			return;<br />		}<br />		if($num>$this->Getunm($goods_id)){<br />			unset($this->item[$goods_id]);<br />		}else{<br />			$this->item[$goods_id]['num']-=$num;<br />		}<br />	}<br />	//去掉一个商品<br />	public function Delitem($goods_id){<br />		if($this->Initem($goods_id)){<br />			unset($this->item[$goods_id]);<br />		}<br />	}<br />	//返回购买商品列表<br />	public function Itemlist(){<br />		return $this->item;<br />	}<br />	//一共有多少种商品<br />	public function Gettype(){<br />		return count($this->item);<br />	}<br />	//获得一种商品的总个数<br />	public function Getunm($goods_id){<br />		return $this->item[$goods_id]['num'];<br />	}<br />	// 查询购物车中有多少个商品<br />	public function Getnumber(){<br />		$num=0;<br />		if($this->Gettype()==0){<br />			return 0;<br />		}<br />		foreach($this->item as $k=>$v){<br />			$num+=$v['num'];<br />		}<br />		return $num;<br />	}<br />	//计算总价格<br />	public function Getprice(){<br />		$price=0;<br />		if($this->Gettype()==0){<br />			return 0;<br />		}<br />		foreach($this->item as $k=>$v){<br />			$price+=$v['num']*$v['num'];<br />		}<br />		return $price;<br />	}<br />	//清空购物车<br />	public function Emptyitem(){<br />		$this->item=array();<br />	}<br />}

以上购物车类的调用示例如下:

<?php<br />header("Content-type:text/html;charset=utf-8");<br />session_start();<br />$cart = Cart::Getcat();<br />$cart->Additem('1','www.phpernote.com','1','1亿');<br />$cart->Additem('2','php购物车类','3','10');<br />print_r($cart);


Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function