【发布时间】:2018-05-03 06:51:51
【问题描述】:
我使用数组创建了一个购物车。我正在尝试输出“您的购物车是空的”。数组为空时的消息。当我尝试这个时,它似乎对我不起作用......
<?php
if (isset($_SESSION['shopping_cart'])):
if (count($_SESSION['shopping_cart']) < 1):
?>
<a>Your cart is empty.</a>
<?php endif; endif; ?>
<?php
if (isset($_SESSION['shopping_cart'])):
if (count($_SESSION['shopping_cart']) > 0):
?>
<a href="checkout.php" class="check-button">Checkout</a>
<?php endif; endif; ?>
【问题讨论】:
-
请回显
$_SESSION['shopping_cart']并在此处显示输出
标签: php sql arrays if-statement