我正在尝试将商品添加到购物车中。
我收到以下错误Fatal Error Call to a member function AddItem() on a non-object
这是我的shoppingCart类
class shoppingCart
{
protected $items = array();
public function AddItem($product_id)
{
if (array_key_exists($product_id, $this->items))
$this->items[$product_id] = $this->items[$product_id] + 1;
else
$this->items[$product_id] = 1;
}
public function GetItems()
{
return array_keys($this->items);
}
public function GetItemQuantity($product_id)
{
return $this->items[$product_id];
}
}
导致错误的特定行是$shopping_cart->AddItem($product_id);
这是完整的细分:
$product_id = $_REQUEST['id'];
if (product_exists($product_id))
{
$shopping_cart->AddItem($product_id);
echo "Item Added";
}
有趣的是,一旦我在我的函数文件中添加了session_start(),我就开始收到此错误,如下所示:
session_start();
// Getting the Catalogue
function get_xml_catalog()
{
return new SimpleXMLElement(file_get_contents(STORE_XML_FILE));
}
// Creating the product list on courses.php
function generate_items()
{
foreach (get_xml_catalog() as $product)
{
echo '<div class="span4">
<div class="service-main">
<div class="service-icon"> <i class="icon-beaker"></i> </div>
<div class="service-info">
<h3>',$product->title,'</h3>
<p>',$product->description,'</p>
<a href="addToCart.php?id=',$product->id,'">Add To Cart</a>
</div>
</div>
</div>
';
}
}
//Passing Data into the shopping cart session.
function get_shopping_cart()
{
if (!isset($_SESSION['cart']))
return new ShoppingCart();
else
return unserialize($_SESSION['cart']);
}
function set_shopping_cart($cart)
{
$_SESSION['cart'] = serialize($cart);
}
//Checking to make sure the product ID is valid (exists) in our catalogue.
function product_exists($product_id)
{
foreach (get_xml_catalog() as $product)
{
if ($product->id==$product_id)
return true;
}
return false;
}
我在网上读到添加序列化/反序列化会修复此错误,但这并没有改变任何东西。我不确定我做错了什么 - 当我删除session_start()
函数时,我可以通过var_dump $ shopping_cart传递它。当我有session_start()时,shoppingCart中的所有函数都不起作用。即使我将AddItem()
更改为不存在的函数,我仍然会得到相同的错误。我确定这与会话有什么关系。
答案 0 :(得分:3)
如果您还没有这样做,应该这样做:
$shopping_cart = new shoppingCart();
$product_id = $_REQUEST['id'];
if (product_exists($product_id)) {
$shopping_cart->AddItem($product_id);
echo "Item Added";
}
答案 1 :(得分:0)
此代码中存在问题。
function get_shopping_cart()
{
if (!isset($_SESSION['cart']))
return new ShoppingCart();
else
return unserialize($_SESSION['cart']);
}
如果未设置会话,则返回对象,该对象用于调用shoppingCart类的其他方法,但是如果设置了会话,则返回未序列化的数据并将其用作类对象。