-1
function countproduct(){
$count = 0;
$cart = isset($_SESSION['cart']) ? $_SESSION['cart']:array();
foreach($cart as $row):
if($row['qty']!=0){
$count = $count + 1;
}
endforeach;
return $count;
私は何の意味を知りたいですか? ISSET($ _ SESSION [ 'カート'])後「?」の意味はなんですか?このステートメントのPHPで
短いIF構文について –
[三項演算子](https://davidwalsh.name/php-ternary-examples) – Andrew
私はリンクを持つことができます –