-
-
/** - * php ショッピング カート
- * bbs.it-home.org を編集
- */
//ショッピングカートセッション生成コード
- if(! $session && ! $ scid ) {
- /*
- session は各ショッピング カートを区別するために使用され、各カートの ID 番号に相当します。
- scid はショッピング カート ID 番号を識別するためにのみ使用され、各カートの名前と見なすことができます。
- when ショッピング カートの ID とセッション値の両方が存在しない場合、新しいショッピング カートが生成されます
- */
- $session = md5(uniqid(rand()));
- /*
- 一意のショッピング カート セッションを生成しますnumber
- rand() は最初に乱数を生成し、次に uniqid() は乱数に基づいて一意の文字列を生成し、最後に文字列に対して md5 を実行します
- */
- SetCookie(scid, $session, time() + 14400);
- /*
- ショッピングカートのCookieを設定します
- 変数名:scid($記号が抜けているのかな?=》修正:scidに「」を追加)
- 変数値:$session
- 有効時間:現在時刻+14400秒(4時間以内)
- setcookie関数の詳しい使い方はPHPマニュアルを参照してください~
- */
- }
- class Cart { //ショッピングカートを開始しますclass
- function check_item( $table, $session, $product ) {
- /*
- 項目(テーブル名、セッション、項目)を確認
- */
- $query = SELECT * FROM $table WHERE session=' $session' AND product=' $product' ;
- /*
- Look かどうかを確認「テーブル」の「ショッピングカート」に「商品」が入っています
- つまり、商品がショッピングカートに入れられているかどうか
- */
- $result = mysql_query( $query);
- if(! $result) {
- return 0;
- }
- /*
- クエリが失敗しました
- */
- $numRows = mysql_num_rows( $result);
- if( $numRows == 0) {
- return 0;
- /*
- 見つからない場合は、0を返します
- */
- } else {
- $row = mysql_fetch_object( $result);
- return $row->quantity;
- /*
- 見つかったら、アイテムの数量を返します
- ここで mysql_fetch_object 関数を説明する必要があります (以下も) 使用されます):
- [mysql_fetch_object() は mysql_fetch_array() に似ていますが、1 つの違いがあります - 配列の代わりにオブジェクトを返します。】
- レコード内の特定のフィールドを取得するには、配列のような添字を使用する代わりに「->」を使用する必要があります
- */
- }
- }
- function add_item( $table, $session, $product, $quantity) {
- /*
- 新しいアイテム(テーブル名、セッション、アイテム、数量)を追加します
- */
- $qty = $this->check_item( $table, $session, $product);
- /*
- 上記の関数を呼び出します、まず、そのようなアイテムが車内に置かれているかどうかを確認してください
- */
- if( $qty == 0) {
- $query = INSERT INTO $table (session, product,数量) VALUES ;
- $query .= (' $ session ', ' $product', ' $quantity') ;
- mysql_query( $query);
- /*車にない場合は、その商品を車に追加します*/
- } else {
- $quantity += $qty ; // 存在する場合は、元の数量を増やします
- $query = UPDATE $table SETquantity=' $quantity' WHERE session=' $session' AND ;
- $query .= product=' $product' ;
- mysql_query( $query);
- /*
- そしてデータベースを変更します
- */
- }
- }
- function delete_item( $table, $session, $product) {
- /*
- アイテム(テーブル名、セッション、アイテム)を削除します
- */
- $query = DELETE FROM $table WHERE session=' $session' AND product=' $product' ;
- mysql_query( $query);
- /*
- PHP ショッピング カート内のこのタイプのアイテムを削除します
- */
- }
- functionmodify_quantity ($table, $session, $product, $quantity) {
- /*
- 品目の数量を変更(テーブル名、セッション、品目、数量)
- */
- $query = UPDATE $table SET数量=' $数量' WHERE session =' $session' ;
- $query .= AND product=' $product' ;
- mysql_query( $query);
- /*
- アイテムの数量をパラメータの値に変更します
- */
- }
- function clear_cart( $ table, $session) {
- /*
- ショッピングカートをクリアします(何も言うことはありません)
- */
- $query = DELETE FROM $table WHERE session=' $session' ;
- mysql_query( $query);
- }
- function cart_total( $ table, $session) {
- /*
- 車内アイテムの合計金額
- */
- $query = SELECT * FROM $table WHERE session=' $session' ;
- $result = mysql_query( $ query);
- /*
- まず車の中の物を全て取り出します
- */
- if(mysql_num_rows( $result) > 0) {
- while( $row = mysql_fetch_object( $result)) {
- /*
- Ifアイテム数 > 0 の場合、1 つずつ価格を判断して計算します
- */
- $query = SELECT 価格 FROM 在庫 WHERE product=' $row->product' ;
- $invResult = mysql_query( $query);
- / *
- 在庫テーブルからアイテムを検索
- */
- $row_price = mysql_fetch_object( $invResult);
- $total += ( $row_price->price * $row->quantity);
- /*
- 合計価格+= この商品の価格 * この商品の価格 数量
- (誰でも理解できるはず:) )
- */
- }
- }
- return $total //合計価格を返す
- }
- function display_contents($ table, $session) {
- /*
- 車中に関する情報を取得する すべてのアイテムの詳細情報を取得します
- */
- $count = 0;
- /*
- アイテム数量カウント
- この変数はアイテムの数をカウントするためにのみ使用されるわけではないことに注意してください、しかしもっと重要なのは、これは戻り値の配列の添字として使用され、各項目を区別するために使用されることです。
- */
- $query = SELECT * FROM $table WHERE session=' $session' ORDER BY id ;
- $result = mysql_query( $query);
- /*
- まず車内の物を全て取り出します
- */
- while( $ row = mysql_fetch_object( $result)) {
- /*
- 各アイテムの詳細情報を個別に取得します
- */
- $query = SELECT * FROM inventory WHERE product=' $row->product' ;
- $result_inv = mysql_query ( $query);
- /*
- 在庫テーブルからアイテムに関する関連情報を検索します
- */
- $row_inventory = mysql_fetch_object( $result_inv);
- $contents[product][ $count] = $row_inventory->product ;product ;
- $contents[価格][ $count] = $row_inventory->価格;
- $contents[数量][ $count] = $row->数量;
- $contents[合計][ $count] = ($ row_inventory->price * $row->quantity);
- $contents[description][$count] = $row_inventory->description;
- /*
- アイテムに関するすべての詳細を $contents 配列に入れます
- $contentsは 2 次元配列です。
- 最初の添字セットは、各商品のさまざまな情報 (商品名、価格、数量など) を区別します。
- 2 番目の添字セットは、さまざまな商品を区別します (これは前の関数です)定義された $count 変数)
- */
- $count++; //アイテムの数に 1 を加えたもの (つまり、次のアイテム)
- }
- $total = $this->cart_total( $table, $session);
- $contents [ Final] = $total;
- /*
- 上記のcart_total関数を同時に呼び出し、合計金額
- を計算し、$contents配列に入れます
- */
- return $contents;
- /*
- 配列を返します
- * /
- }
- function num_items( $table, $session) {
- /*
- 項目タイプの合計数を返します (つまり、2 つの同一の項目を 1 つとして数えるのはナンセンスです - -!)
- */
- $query = SELECT * FROM $table WHERE session=' $session' ;
- $result = mysql_query( $query);
- $num_rows = mysql_num_rows( $result);
- return $num_rows;
- /*
- 車内のアイテムをすべて取り出す操作の影響を受けるものを取得しますデータベースの行数、つまりアイテムの総数
- */
- }
- function quant_items($table, $session) {
- /*
- すべてのアイテムの総数を返します(つまり、2 つの同一のアイテムも 2 つのアイテムとしてカウントされます - -#)
- */
- $quant = 0;//アイテムの合計数量
- $query = SELECT * FROM $table WHERE session=' $session' ;
- $ result = mysql_query( $query);
- while( $row = mysql_fetch_object( $ result)) {
- /*
- 項目を一つずつ取り出します
- */
- $quant += $row->quantity; //追加合計に対する商品の数量
- }
- return $quant; //合計金額を返す
- }
- }
- ?
-
コードをコピー
|