0

こんにちは、私はPHPが初めてで、以下の問題があります。配列にデータを追加するコードを以下に書きました。追加されたデータを表示する必要があります。その方法を教えてください。

class ShoppingCart
{
private $items = array();
private $n_items = 0;
function addItem( Item $item )
{
 $this->items[] = $item;
$this->n_items = $this->n_items + 1;
//print_r (array_values($this->items));
echo "item $this->items added sussesfully";
}
}

class Item {
protected $name;
protected $price;

public function __construct($name, $price) {
    $this->name = $name;
    $this->price = $price;
}

public function getName() {
    echo "item is $this->name";
    return $this->name;
}

public function getPrice() {
    return $this->price;
}

}

require_once('AddingMachine.php');
require_once('item.php');

//$arrayofnumbers = array(100,200);

$objectname = new ShoppingCart();
$objectname->addItem(new Item('My Super Cool Toy', 10.99));

ありがとう

4

1 に答える 1

0

はプライベート プロパティであるため、クラス$itemsに新しいメソッドを作成する必要がありますShoppingCart

public function getItems()
{
    return $this->items;
}

そして$items、新しいメソッドを呼び出して配列を取得します

$objectname = new ShoppingCart();
$items = $objectname->getItems();

var_dump($items);
于 2013-03-27T11:29:02.277 に答える