当前位置: 首页>>代码示例>>PHP>>正文


PHP Shop::addItem方法代码示例

本文整理汇总了PHP中Shop::addItem方法的典型用法代码示例。如果您正苦于以下问题:PHP Shop::addItem方法的具体用法?PHP Shop::addItem怎么用?PHP Shop::addItem使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Shop的用法示例。


在下文中一共展示了Shop::addItem方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: Shop

<?php

require 'connection.php';
require 'shop_classes.php';
if (!isset($shop)) {
    $shop = new Shop();
    $cart = new ShoppingCart();
}
$query = "SELECT * FROM items;";
$result = mysqli_query($link, $query);
$index = 0;
$resultsArray = [];
while ($row = mysqli_fetch_assoc($result)) {
    $resultsArray[$index] = $row;
    $index++;
}
foreach ($resultsArray as $item) {
    $shop->addItem(new Item($item['id'], $item['name'], $item['description'], $item['price']));
}
开发者ID:stephenoreilly,项目名称:smartydemo,代码行数:19,代码来源:initialize_shop.php

示例2: explode

    }
    
    $file = $Shop->getShop($shop);
    
    if($file == false || $file == null) {
        $errors[] = "No shop with the name {$shop} was found.";
    }

    if(count($errors) < 1) { 
        $data = explode(":", $item);
        $item = new Shop_Item($data[0], $data[1]);
        $item->setBuy($buyprice, $bundlebuy);
        $item->setSell($sellprice, $bundlesell);
        $item->setStock(0, $stock);
        
        if($Shop->addItem($item)) {
            $success = "<strong>Added item</strong> ".$items->getName($data[0] . ':' . $data[1])." to <strong>{$shop}</strong> - <a href='editor.php?edit={$shop}'>view changes</a> or add another:<br />";
        } else {
            $errors[] = "Could not add item to {$shop} check to make sure the file is writable!";
        }
    }
}

if(count($errors) > 0):
    echo '<p><strong>There was an error processing the form.</strong></p>';
    echo '<ul>';
    
    foreach($errors as $error):
        echo "<li>$error</li>";
    endforeach;
    
开发者ID:nijikokun,项目名称:ls_editsuite,代码行数:30,代码来源:add-item.php


注:本文中的Shop::addItem方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。