drvpv7995 2013-10-29 18:27 采纳率: 100%
浏览 13
已采纳

PHP:需要一个有价格的文件

I am implementing a small online purchase page with a very few products.

<?php  
$item_name = "lamp";
$item_price = 29.99;
$item_category = "furniture";
$item_Dollar = 29;
$item_Cents = 99;
?>

How do I go about it? It's only 2 product types and basically only prices would differ so there is no need for a database. I was thinking of including a .php file containing all the prices and having a function there that will switch($id) between them and reassign the values.

<?php
    function selectProduct($id) {

     switch($id) {
          case 1:
              $item_name = "lamp";
              $item_price = 19.99;
              $item_category = "furniture";
              $item_Dollar = 19;
              $item_Cents = 99;
              break;

          case 2:
              // and so on...

          default: break;
     }
    }
?>

The logic enters the respective cases but it does not reassign the instance variables. For some reason when I try to access them on another page after require_once(pricings.php); they are empty. I am not very familiar with PHP which probably made itself obvious from the code. What am I doing wrong?

  • 写回答

5条回答 默认 最新

  • duan6301 2013-10-29 18:35
    关注

    I would build an array of items, where each element is a key/value pair, the key being the item id and the value being another array of key/value pairs for the item's attributes:

    $items = array(
        1 => array(
            'name' => 'lamp',
            'price' => '19.99',
            'category' => 'furniture',
        ),
        2 => array(
            'name' => 'chair',
            'price' => '29.99',
            'category' => 'furniture',
        ),
    );
    

    Then you can simply refer to the array by using its product id as the index:

    $id = 1;
    echo "Name is: " . $items[$id]['name'];
    echo "Price is: " . $items[$id]['price'];
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(4条)

报告相同问题?

悬赏问题

  • ¥15 为什么apriori的运行时间会比fp growth的运行时间短呢
  • ¥15 帮我解决一下膳食平衡的线性规划模型的数据实例
  • ¥40 万年历缺少农历,需要和阳历同时显示
  • ¥250 雷电模拟器内存穿透、寻基址和特征码的教学
  • ¥200 比特币ord程序wallet_constructor.rs文件支持一次性铸造1000个代币,并将它们分配到40个UTXO上(每个UTXO上分配25个代币),并设置找零地址
  • ¥15 关于Java的学习问题
  • ¥15 如何使用chatgpt完成文本分类任务?
  • ¥15 已知速度v关于位置s的等式,怎么转化为已知位置求速度v的等式
  • ¥15 我有个餐饮系统,用wampserver把环境配置好了,但是后端的网页却进去,是为什么,能不能帮远程一下?
  • ¥15 R运行没有名称为"species"的插槽对于此对象类"SDMmodelCV"