search
HomeBackend DevelopmentPHP TutorialAn example of php shopping cart class implementation code

  1. // Shopping cart class
  2. /*
  3. Instructions for use:
  4. Constructor cart can use parameters:
  5. cart($cartname = 'myCart', $session_id = '', $savetype = 'session', $cookietime = 86400, $cookiepath = '/', $cookiedomain = '')
  6. $cartname is the identification of the shopping cart, which can be specified to ensure that there is no duplicate name and no related conflicts
  7. $ session_id is the session_id. The default is to use cookies to transmit. It can also be customized. It will only work if the storage type is session. $savetype storage type, there are session and cookie methods.
  8. ... Others are parameters required by cookies
  9. When the program itself uses session, it is recommended to change this php shopping cart class to cookie implementation.

  10. //Add a product

  11. // Reference class
  12. require_once './cart.class.php';
  13. // Create class instance
  14. $cart = new cart(); p>
  15. // The product already has modified data

  16. if ($cart->data[$id]) {
  17. $cart->data[$id]['count'] += $count;
  18. $cart->data[$id]['money'] += $cart->data[$id]['price'] * $count;
  19. // Add product
  20. } else {
  21. $cart- >data[$id]['name'] = $name;
  22. $cart->data[$id]['price'] = $price;
  23. $cart->data[$id]['count '] = $count;
  24. $cart->data[$id]['money'] = $price * $count;
  25. }
  26. // Save shopping cart data
  27. $cart->save();
  28. Edit a product quantity

  29. // Reference class
  30. require_once './cart.class.php';
  31. // Create a class instance
  32. $cart = new cart();
  33. // The product already has modified data

  34. if ($cart->data[$id]) {
  35. $cart->data[$id]['count'] = $count;
  36. $cart- >data[$id]['money'] = $cart->data[$id]['price'] * $count;
  37. // Save shopping cart data

  38. $ cart->save();
  39. }
  40. Delete a product

  41. // Reference class
  42. require_once './cart.class.php';
  43. // Create class instance
  44. $cart = new cart();
  45. // Delete items

  46. unset($cart->data[$id]);
  47. // Save shopping cart data

  48. $cart->save();
  49. List shopping cart

  50. // Reference class
  51. require_once './cart.class.php';
  52. // Create class instance
  53. $cart = new cart();
  54. foreach ($cart->data AS $k => $v) {

  55. echo 'Product ID: '.$k;
  56. echo 'Product name: '.$v['name'];
  57. echo 'Unit price of product: '.$v['price'];
  58. echo 'Quantity of product: '.$v['count'];
  59. echo 'Total price of product: ' .$v['money'];
  60. }
  61. The total accumulation of a certain field---such as the total price of all products

  62. // Reference class
  63. require_once './cart.class.php';
  64. // Create a class instance
  65. $cart = new cart();
  66. // Accumulate money field

  67. $cart->sum('money')
  68. Clear shopping cart
  69. // Reference class
  70. require_once './cart.class.php';
  71. // Create class instance
  72. $cart = new cart();
  73. // Clear Data

  74. unset($cart->data);
  75. // Save shopping cart data

  76. $cart->save();
  77. */
  78. //edit bbs.it-home.org

  79. class cart {
  80. // Shopping cart identifier

  81. var $cartname = '';
  82. // Storage type
  83. var $savetype = '';
  84. // Product data in the shopping cart
  85. var $data = array();
  86. // Cookie data
  87. var $cookietime = 0;
  88. var $cookiepath = '/';
  89. var $cookiedomain = '';
  90. // Constructor (shopping cart ID, $session_id, storage type (session or cookie), default is time of day, $cookiepath, $cookiedomain)

  91. function cart($cartname = 'myCart', $session_id = '', $savetype = 'session', $cookietime = 86400, $cookiepath = '/', $cookiedomain = '') {
  92. // Adopt session storage

  93. if ($savetype == 'session') {
  94. if (!$session_id && $_COOKIE[$cartname.'_session_id']) {

  95. session_id($_COOKIE[$cartname .'_session_id']);
  96. } elseif($session_id)
  97. session_id($session_id);
  98. session_start();

  99. if (!$session_id && !$_COOKIE[$cartname.'_session_id'])

  100. setcookie($cartname.'_session_id', session_id(), $cookietime + time(), $cookiepath, $cookiedomain);
  101. }
  102. < ;p>$this->cartname = $cartname;
  103. $this->savetype = $savetype;
  104. $this->cookietime = $cookietime;
  105. $this->cookiepath = $cookiepath;
  106. $this- >cookiedomain = $cookiedomain;
  107. $this->readdata();
  108. }
  109. // Read data

  110. function readdata() {
  111. if ($this->savetype = = 'session') {
  112. if ($_SESSION[$this->cartname] && is_array($_SESSION[$this->cartname]))
  113. $this->data = $_SESSION[$this-> cartname];
  114. else
  115. $this->data = array();
  116. } elseif ($this->savetype == 'cookie') {
  117. if ($_COOKIE[$this->cartname])
  118. $ this->data = unserialize($_COOKIE[$this->cartname]);
  119. else
  120. $this->data = array();
  121. }
  122. }
  123. // Save shopping cart data

  124. function save() {
  125. if ($this->savetype == 'session') {
  126. $_SESSION[$this->cartname] = $this->data;
  127. }elseif ($this->savetype == 'cookie') {
  128. if ($this->data)
  129. setcookie($this->cartname, serialize($this->data), $this->cookietime + time(), $this->cookiepath, $this->cookiedomain);
  130. }
  131. }
  132. // 返回商品某字段累加

  133. function sum($field) {
  134. $sum = 0;

  135. if ($this->data)
  136. foreach ($this->data AS $v)
  137. if ($v[$field])
  138. $sum += $v[$field] + 0;
  139. return $sum;

  140. }
  141. }
  142. ?>
复制代码


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
Optimize PHP Code: Reducing Memory Usage & Execution TimeOptimize PHP Code: Reducing Memory Usage & Execution TimeMay 10, 2025 am 12:04 AM

TooptimizePHPcodeforreducedmemoryusageandexecutiontime,followthesesteps:1)Usereferencesinsteadofcopyinglargedatastructurestoreducememoryconsumption.2)LeveragePHP'sbuilt-infunctionslikearray_mapforfasterexecution.3)Implementcachingmechanisms,suchasAPC

PHP Email: Step-by-Step Sending GuidePHP Email: Step-by-Step Sending GuideMay 09, 2025 am 12:14 AM

PHPisusedforsendingemailsduetoitsintegrationwithservermailservicesandexternalSMTPproviders,automatingnotificationsandmarketingcampaigns.1)SetupyourPHPenvironmentwithawebserverandPHP,ensuringthemailfunctionisenabled.2)UseabasicscriptwithPHP'smailfunct

How to Send Email via PHP: Examples & CodeHow to Send Email via PHP: Examples & CodeMay 09, 2025 am 12:13 AM

The best way to send emails is to use the PHPMailer library. 1) Using the mail() function is simple but unreliable, which may cause emails to enter spam or cannot be delivered. 2) PHPMailer provides better control and reliability, and supports HTML mail, attachments and SMTP authentication. 3) Make sure SMTP settings are configured correctly and encryption (such as STARTTLS or SSL/TLS) is used to enhance security. 4) For large amounts of emails, consider using a mail queue system to optimize performance.

Advanced PHP Email: Custom Headers & FeaturesAdvanced PHP Email: Custom Headers & FeaturesMay 09, 2025 am 12:13 AM

CustomheadersandadvancedfeaturesinPHPemailenhancefunctionalityandreliability.1)Customheadersaddmetadatafortrackingandcategorization.2)HTMLemailsallowformattingandinteractivity.3)AttachmentscanbesentusinglibrarieslikePHPMailer.4)SMTPauthenticationimpr

Guide to Sending Emails with PHP & SMTPGuide to Sending Emails with PHP & SMTPMay 09, 2025 am 12:06 AM

Sending mail using PHP and SMTP can be achieved through the PHPMailer library. 1) Install and configure PHPMailer, 2) Set SMTP server details, 3) Define the email content, 4) Send emails and handle errors. Use this method to ensure the reliability and security of emails.

What is the best way to send an email using PHP?What is the best way to send an email using PHP?May 08, 2025 am 12:21 AM

ThebestapproachforsendingemailsinPHPisusingthePHPMailerlibraryduetoitsreliability,featurerichness,andeaseofuse.PHPMailersupportsSMTP,providesdetailederrorhandling,allowssendingHTMLandplaintextemails,supportsattachments,andenhancessecurity.Foroptimalu

Best Practices for Dependency Injection in PHPBest Practices for Dependency Injection in PHPMay 08, 2025 am 12:21 AM

The reason for using Dependency Injection (DI) is that it promotes loose coupling, testability, and maintainability of the code. 1) Use constructor to inject dependencies, 2) Avoid using service locators, 3) Use dependency injection containers to manage dependencies, 4) Improve testability through injecting dependencies, 5) Avoid over-injection dependencies, 6) Consider the impact of DI on performance.

PHP performance tuning tips and tricksPHP performance tuning tips and tricksMay 08, 2025 am 12:20 AM

PHPperformancetuningiscrucialbecauseitenhancesspeedandefficiency,whicharevitalforwebapplications.1)CachingwithAPCureducesdatabaseloadandimprovesresponsetimes.2)Optimizingdatabasequeriesbyselectingnecessarycolumnsandusingindexingspeedsupdataretrieval.

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

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

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor