使用php怎么編寫一個購物車功能?針對這個問題,這篇文章詳細介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
創(chuàng)新互聯(lián)主要從事成都網(wǎng)站設(shè)計、成都做網(wǎng)站、外貿(mào)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計、企業(yè)做網(wǎng)站、公司建網(wǎng)站等業(yè)務(wù)。立足成都服務(wù)峨眉山,十多年網(wǎng)站建設(shè)經(jīng)驗,價格優(yōu)惠、服務(wù)專業(yè),歡迎來電咨詢建站服務(wù):18980820575代碼如下:
//
// add_item.php:
// Add an item to the shopping cart.
//
session_start();
if (session_is_registered('cart')) {
session_register('cart');
}
require 'lib.inc.php'; // LoadProducts()
LoadProducts(); // Load products in $master_products_list
// Make $curr_product global
$curr_product = array();
// Loop through all the products and pull up the product
// that we are interested in
foreach ($master_products_list as $prod_id => $product) {
if (trim($prod_id) == trim($_GET[id])) {
$curr_product = $product;
}
}
// Register our session
//session_register('cart');
//if(session_is_registered('cart')) echo "已經(jīng)注冊";
if ($_POST[ordered]) { // If they have chosen the product
array_push($_SESSION[cart][products], array(trim($_POST[id]), $_POST[quantity]));
$_SESSION[cart][num_items] += $_POST[quantity];
}
?>
查看購物車的商品,代碼如下:
復制代碼 代碼如下:
//
// cart.php:
//
session_start();
require 'lib.inc.php';
//判斷購物籃會話變量cart是否注冊,不注冊則注冊cart變量
if (session_is_registered('cart')) {
session_register('cart');
}
// 如果購物籃沒有初始化,則初始化購物籃
if (!isset($_SESSION[cart][num_items])) {
$_SESSION[cart] = array("num_items" => 0,
"products" => array());
}
// From site_lib.inc, Loads the $master_products_list array
LoadProducts(); //載入物品列表
?>
商品名稱 | 商品說明 | 單價 | 數(shù)量 | |
---|---|---|---|---|
合計: | RMB: |
商品名稱 | 商品說明 | 單價 | |
---|---|---|---|
$ | 添加至購物籃 |
修改購物車的數(shù)量,代碼如下:
復制代碼 代碼如下:
//
// change_quant.php:
// Change the quantity of an item in the shopping cart.
//
session_start();
if (session_is_registered('cart')) {
session_register('cart');
}
// Typecast to int, making sure we access the
// right element below
$i = (int)$_POST[id];
// Save the old number of products for display
// and arithmetic
$old_num = $_SESSION[cart][products][$i][1];
if ($_POST[quantity]) {
$_SESSION[cart][products][$i][1] = $_POST[quantity]; //change the quantity
} else {
unset($_SESSION[cart][products][$i]); // Send the product into oblivion
}
// Update the number of items
$_SESSION[cart][num_items] = ($old_num >$_POST[quantity]) ?
$_SESSION[cart][num_items] - ($old_num-$_POST[quantity]) :
$_SESSION[cart][num_items] + ($_POST[quantity]-$old_num);
?>
功能頁面,用戶把購物車里面的內(nèi)容保存到txt數(shù)據(jù)庫,代碼如下:
復制代碼 代碼如下:
//物品數(shù)組
$master_products_list = array();
//載入物品數(shù)據(jù)函數(shù)
function LoadProducts() {
global $master_products_list;
$filename = 'products.txt';
$fp = @fopen($filename, "r")
or die("打開 $filename 文件失敗");
@flock($fp, 1)
or die("鎖定 $filename 文件失敗");
//讀取文件內(nèi)容
while ($line = fgets($fp, 1024)) {
list($id, $name, $desc, $price) = explode('|', $line); //讀取每行數(shù)據(jù),數(shù)據(jù)以| 格開
$id = trim($id); //去掉首尾特殊符號
$master_products_list[$id] = array("name" => $name, //名稱
"desc" => $desc, //說明
"price" => $price); //單價
}
@fclose($fp) //關(guān)閉文件
or die("關(guān)閉 $filename 文件失敗");
}
?>
關(guān)于使用php怎么編寫一個購物車功能問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道了解更多相關(guān)知識。